aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorGuillermo Iguaran <guilleiguaran@gmail.com>2019-03-08 17:36:54 -0500
committerGitHub <noreply@github.com>2019-03-08 17:36:54 -0500
commitcd89082fa963a83f3f54daec976ab552707bca80 (patch)
treed2d05ed8a70862d8e408a15bdf4c78a1d35742a7 /railties
parent5ee564345199b91c3d078a6899affa00f9645795 (diff)
parentbf87dae202e5c410f9e74cc64d9146bb6f92b683 (diff)
downloadrails-cd89082fa963a83f3f54daec976ab552707bca80.tar.gz
rails-cd89082fa963a83f3f54daec976ab552707bca80.tar.bz2
rails-cd89082fa963a83f3f54daec976ab552707bca80.zip
Merge pull request #35538 from sharang-d/use-latest-webpacker
Use the latest stable release of webpacker
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 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