aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/generators/app_base.rb
diff options
context:
space:
mode:
authorSharang Dashputre <sharang.d@gmail.com>2019-03-08 22:30:06 +0530
committerSharang Dashputre <sharang.d@gmail.com>2019-03-09 00:14:17 +0530
commit8eaffa19457b782a8eb44ced1f6cb99f63a8ce57 (patch)
tree275270b5e03fb02c4595c266235be4780050ba56 /railties/lib/rails/generators/app_base.rb
parent199de6bee261dd816b68c841c7775fdcd02b68d2 (diff)
downloadrails-8eaffa19457b782a8eb44ced1f6cb99f63a8ce57.tar.gz
rails-8eaffa19457b782a8eb44ced1f6cb99f63a8ce57.tar.bz2
rails-8eaffa19457b782a8eb44ced1f6cb99f63a8ce57.zip
Use the latest stable release of webpacker
Diffstat (limited to 'railties/lib/rails/generators/app_base.rb')
-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 0eed552042..1a857985ef 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.rc.3", "Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker"
+ GemfileEntry.version "webpacker", "~> 4.0.0", "Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker"
end
end