aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Gemfile2
-rw-r--r--Gemfile.lock4
-rw-r--r--guides/source/configuring.md2
-rw-r--r--railties/lib/rails/generators/rails/app/templates/Gemfile2
4 files changed, 5 insertions, 5 deletions
diff --git a/Gemfile b/Gemfile
index bc14498372..b9fc37cba2 100644
--- a/Gemfile
+++ b/Gemfile
@@ -45,7 +45,7 @@ end
# Active Support.
gem 'dalli', '>= 2.2.1'
-gem 'listen', '~> 3.0.3'
+gem 'listen', '~> 3.0.4'
# Active Job.
group :job do
diff --git a/Gemfile.lock b/Gemfile.lock
index b3225dedea..0f5a48e524 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -222,7 +222,7 @@ GEM
kindlerb (0.1.1)
mustache
nokogiri
- listen (3.0.3)
+ listen (3.0.4)
rb-fsevent (>= 0.9.3)
rb-inotify (>= 0.9)
loofah (2.0.3)
@@ -342,7 +342,7 @@ DEPENDENCIES
jquery-rails!
json
kindlerb (= 0.1.1)
- listen (~> 3.0.3)
+ listen (~> 3.0.4)
mail!
minitest (< 5.3.4)
mocha (~> 0.14)
diff --git a/guides/source/configuring.md b/guides/source/configuring.md
index 3bb056493e..ee3f742367 100644
--- a/guides/source/configuring.md
+++ b/guides/source/configuring.md
@@ -1159,7 +1159,7 @@ false:
```ruby
group :development do
- gem 'listen'
+ gem 'listen', '~> 3.0.4'
end
```
diff --git a/railties/lib/rails/generators/rails/app/templates/Gemfile b/railties/lib/rails/generators/rails/app/templates/Gemfile
index ef23bc23a7..4f3f59cc22 100644
--- a/railties/lib/rails/generators/rails/app/templates/Gemfile
+++ b/railties/lib/rails/generators/rails/app/templates/Gemfile
@@ -51,7 +51,7 @@ group :development do
# Loading the listen gem enables an evented file system monitor. Check
# https://github.com/guard/listen#listen-adapters if on Windows or *BSD.
- # gem 'listen', '~> 3.0.3'
+ # gem 'listen', '~> 3.0.4'
end
<% end -%>