aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/configuring.md
diff options
context:
space:
mode:
authorEsteban Santana Santana <sesteban@amazon.com>2016-10-03 16:58:17 +0530
committerEsteban Santana Santana <sesteban@amazon.com>2016-10-03 16:58:17 +0530
commitddddedc487912e33edb7d78aec6bcf99b1312c6d (patch)
tree938c484ff05f7e5030df42e18b4d92a2b91b9214 /guides/source/configuring.md
parent8058ece4feea7fb8feed1d0cfc44c6065c773127 (diff)
downloadrails-ddddedc487912e33edb7d78aec6bcf99b1312c6d.tar.gz
rails-ddddedc487912e33edb7d78aec6bcf99b1312c6d.tar.bz2
rails-ddddedc487912e33edb7d78aec6bcf99b1312c6d.zip
Allow the use of listen's 3.1.x branch.
When the initial evented monitor feature was written, the latest version of listen was the 3.0.x series. Since then the listen project has moved on to the 3.1.x series. This patch allows the use of the new versions.
Diffstat (limited to 'guides/source/configuring.md')
-rw-r--r--guides/source/configuring.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/configuring.md b/guides/source/configuring.md
index fbf3c27957..3df8a0ed26 100644
--- a/guides/source/configuring.md
+++ b/guides/source/configuring.md
@@ -1296,7 +1296,7 @@ evented file system monitor to detect changes when `config.cache_classes` is
```ruby
group :development do
- gem 'listen', '~> 3.0.4'
+ gem 'listen', '>= 3.0.5', '< 3.2'
end
```