Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to listen 3.2 #38675

Merged
merged 1 commit into from Mar 8, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion Gemfile
Expand Up @@ -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
gem "rexml", require: false
Expand Down
10 changes: 4 additions & 6 deletions Gemfile.lock
Expand Up @@ -292,10 +292,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.4.0)
crass (~> 1.0.2)
nokogiri (>= 1.5.9)
Expand Down Expand Up @@ -420,7 +419,6 @@ GEM
ruby-progressbar (1.10.1)
ruby-vips (2.0.16)
ffi (~> 1.9)
ruby_dep (1.5.0)
rubyzip (2.0.0)
rufus-scheduler (3.6.0)
fugit (~> 1.1, >= 1.1.6)
Expand Down Expand Up @@ -560,7 +558,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
Expand Down
2 changes: 1 addition & 1 deletion guides/source/configuring.md
Expand Up @@ -1591,7 +1591,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
```

Expand Down
Expand Up @@ -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
Expand Down