aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorSharang Dashputre <sharang.d@gmail.com>2019-03-09 05:29:36 +0530
committerSharang Dashputre <sharang.d@gmail.com>2019-03-09 05:29:36 +0530
commitc2de1f79aba8f7282bda1e519147f08ef32cba47 (patch)
tree5d670f5eeb3a78554e0ade06d12f17fd31645639 /railties
parent788272231cb75d9de454c45881421db9afea74cd (diff)
downloadrails-c2de1f79aba8f7282bda1e519147f08ef32cba47.tar.gz
rails-c2de1f79aba8f7282bda1e519147f08ef32cba47.tar.bz2
rails-c2de1f79aba8f7282bda1e519147f08ef32cba47.zip
Don't lock the webpacker gem by its patch version
Diffstat (limited to 'railties')
-rw-r--r--railties/lib/rails/generators/app_base.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/lib/rails/generators/app_base.rb b/railties/lib/rails/generators/app_base.rb
index 1a857985ef..66f6b57379 100644
--- a/railties/lib/rails/generators/app_base.rb
+++ b/railties/lib/rails/generators/app_base.rb
@@ -316,7 +316,7 @@ module Rails
if options.dev? || options.edge?
GemfileEntry.github "webpacker", "rails/webpacker", nil, "Use development version of Webpacker"
else
- GemfileEntry.version "webpacker", "~> 4.0.0", "Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker"
+ GemfileEntry.version "webpacker", "~> 4.0", "Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker"
end
end