mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Update to listen 3.2
* https://github.com/guard/listen/releases/tag/v3.2.0 * https://github.com/guard/listen/issues/465 * `listen` removed the unmaintained `ruby_dep` dependency, which incorrectly shows warnings when running on TruffleRuby.
This commit is contained in:
parent
56f63552f1
commit
cbc5fbc008
4 changed files with 7 additions and 9 deletions
2
Gemfile
2
Gemfile
|
@ -41,7 +41,7 @@ end
|
||||||
|
|
||||||
# Active Support
|
# Active Support
|
||||||
gem "dalli"
|
gem "dalli"
|
||||||
gem "listen", ">= 3.0.5", "< 3.2", require: false
|
gem "listen", "~> 3.2", require: false
|
||||||
gem "libxml-ruby", platforms: :ruby
|
gem "libxml-ruby", platforms: :ruby
|
||||||
gem "connection_pool", require: false
|
gem "connection_pool", require: false
|
||||||
|
|
||||||
|
|
10
Gemfile.lock
10
Gemfile.lock
|
@ -297,10 +297,9 @@ GEM
|
||||||
mustache
|
mustache
|
||||||
nokogiri
|
nokogiri
|
||||||
libxml-ruby (3.1.0)
|
libxml-ruby (3.1.0)
|
||||||
listen (3.1.5)
|
listen (3.2.0)
|
||||||
rb-fsevent (~> 0.9, >= 0.9.4)
|
rb-fsevent (~> 0.10, >= 0.10.3)
|
||||||
rb-inotify (~> 0.9, >= 0.9.7)
|
rb-inotify (~> 0.9, >= 0.9.10)
|
||||||
ruby_dep (~> 1.2)
|
|
||||||
loofah (2.3.0)
|
loofah (2.3.0)
|
||||||
crass (~> 1.0.2)
|
crass (~> 1.0.2)
|
||||||
nokogiri (>= 1.5.9)
|
nokogiri (>= 1.5.9)
|
||||||
|
@ -424,7 +423,6 @@ GEM
|
||||||
ruby-progressbar (1.10.1)
|
ruby-progressbar (1.10.1)
|
||||||
ruby-vips (2.0.15)
|
ruby-vips (2.0.15)
|
||||||
ffi (~> 1.9)
|
ffi (~> 1.9)
|
||||||
ruby_dep (1.5.0)
|
|
||||||
rubyzip (2.0.0)
|
rubyzip (2.0.0)
|
||||||
rufus-scheduler (3.6.0)
|
rufus-scheduler (3.6.0)
|
||||||
fugit (~> 1.1, >= 1.1.6)
|
fugit (~> 1.1, >= 1.1.6)
|
||||||
|
@ -564,7 +562,7 @@ DEPENDENCIES
|
||||||
json (>= 2.0.0)
|
json (>= 2.0.0)
|
||||||
kindlerb (~> 1.2.0)
|
kindlerb (~> 1.2.0)
|
||||||
libxml-ruby
|
libxml-ruby
|
||||||
listen (>= 3.0.5, < 3.2)
|
listen (~> 3.2)
|
||||||
minitest-bisect
|
minitest-bisect
|
||||||
minitest-reporters
|
minitest-reporters
|
||||||
minitest-retry
|
minitest-retry
|
||||||
|
|
|
@ -1563,7 +1563,7 @@ evented file system monitor to detect changes when `config.cache_classes` is
|
||||||
|
|
||||||
```ruby
|
```ruby
|
||||||
group :development do
|
group :development do
|
||||||
gem 'listen', '>= 3.0.5', '< 3.2'
|
gem 'listen', '~> 3.2'
|
||||||
end
|
end
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
@ -53,7 +53,7 @@ group :development do
|
||||||
<%- end -%>
|
<%- end -%>
|
||||||
<%- end -%>
|
<%- end -%>
|
||||||
<% if depend_on_listen? -%>
|
<% if depend_on_listen? -%>
|
||||||
gem 'listen', '>= 3.0.5', '< 3.2'
|
gem 'listen', '~> 3.2'
|
||||||
<% end -%>
|
<% end -%>
|
||||||
<% if spring_install? -%>
|
<% if spring_install? -%>
|
||||||
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
|
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
|
||||||
|
|
Loading…
Reference in a new issue