mirror of https://github.com/rails/rails
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
2
Gemfile
2
Gemfile
|
@ -41,7 +41,7 @@ end
|
|||
|
||||
# Active Support
|
||||
gem "dalli"
|
||||
gem "listen", ">= 3.0.5", "< 3.2", require: false
|
||||
gem "listen", "~> 3.2", require: false
|
||||
gem "libxml-ruby", platforms: :ruby
|
||||
gem "connection_pool", require: false
|
||||
|
||||
|
|
10
Gemfile.lock
10
Gemfile.lock
|
@ -297,10 +297,9 @@ GEM
|
|||
mustache
|
||||
nokogiri
|
||||
libxml-ruby (3.1.0)
|
||||
listen (3.1.5)
|
||||
rb-fsevent (~> 0.9, >= 0.9.4)
|
||||
rb-inotify (~> 0.9, >= 0.9.7)
|
||||
ruby_dep (~> 1.2)
|
||||
listen (3.2.0)
|
||||
rb-fsevent (~> 0.10, >= 0.10.3)
|
||||
rb-inotify (~> 0.9, >= 0.9.10)
|
||||
loofah (2.3.0)
|
||||
crass (~> 1.0.2)
|
||||
nokogiri (>= 1.5.9)
|
||||
|
@ -424,7 +423,6 @@ GEM
|
|||
ruby-progressbar (1.10.1)
|
||||
ruby-vips (2.0.15)
|
||||
ffi (~> 1.9)
|
||||
ruby_dep (1.5.0)
|
||||
rubyzip (2.0.0)
|
||||
rufus-scheduler (3.6.0)
|
||||
fugit (~> 1.1, >= 1.1.6)
|
||||
|
@ -564,7 +562,7 @@ DEPENDENCIES
|
|||
json (>= 2.0.0)
|
||||
kindlerb (~> 1.2.0)
|
||||
libxml-ruby
|
||||
listen (>= 3.0.5, < 3.2)
|
||||
listen (~> 3.2)
|
||||
minitest-bisect
|
||||
minitest-reporters
|
||||
minitest-retry
|
||||
|
|
|
@ -1563,7 +1563,7 @@ evented file system monitor to detect changes when `config.cache_classes` is
|
|||
|
||||
```ruby
|
||||
group :development do
|
||||
gem 'listen', '>= 3.0.5', '< 3.2'
|
||||
gem 'listen', '~> 3.2'
|
||||
end
|
||||
```
|
||||
|
||||
|
|
|
@ -53,7 +53,7 @@ group :development do
|
|||
<%- end -%>
|
||||
<%- end -%>
|
||||
<% if depend_on_listen? -%>
|
||||
gem 'listen', '>= 3.0.5', '< 3.2'
|
||||
gem 'listen', '~> 3.2'
|
||||
<% end -%>
|
||||
<% if spring_install? -%>
|
||||
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
|
||||
|
|
Loading…
Reference in New Issue