diff options
author | Sharang Dashputre <sharang.d@gmail.com> | 2019-03-09 05:29:36 +0530 |
---|---|---|
committer | Sharang Dashputre <sharang.d@gmail.com> | 2019-03-09 05:29:36 +0530 |
commit | c2de1f79aba8f7282bda1e519147f08ef32cba47 (patch) | |
tree | 5d670f5eeb3a78554e0ade06d12f17fd31645639 /Gemfile | |
parent | 788272231cb75d9de454c45881421db9afea74cd (diff) | |
download | rails-c2de1f79aba8f7282bda1e519147f08ef32cba47.tar.gz rails-c2de1f79aba8f7282bda1e519147f08ef32cba47.tar.bz2 rails-c2de1f79aba8f7282bda1e519147f08ef32cba47.zip |
Don't lock the webpacker gem by its patch version
Diffstat (limited to 'Gemfile')
-rw-r--r-- | Gemfile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -15,7 +15,7 @@ gem "selenium-webdriver", ">= 3.5.0", "< 3.13.0" gem "rack-cache", "~> 1.2" gem "sass-rails" gem "turbolinks", "~> 5" -gem "webpacker", "~> 4.0.0", require: ENV["SKIP_REQUIRE_WEBPACKER"] != "true" +gem "webpacker", "~> 4.0", require: ENV["SKIP_REQUIRE_WEBPACKER"] != "true" # require: false so bcrypt is loaded only when has_secure_password is used. # This is to avoid Active Model (and by extension the entire framework) # being dependent on a binary library. |