diff options
author | Prathamesh Sonpatki <csonpatki@gmail.com> | 2019-04-26 12:55:28 +0530 |
---|---|---|
committer | Prathamesh Sonpatki <csonpatki@gmail.com> | 2019-04-26 12:55:28 +0530 |
commit | fa0ce5c790c93473c458a940eabcc7c18995c562 (patch) | |
tree | b5fdeb975f240db4504f628fbacc5f2718cca145 /railties/lib/rails | |
parent | fb4268401575b5af3d5d2566fd37fc75f34bb93b (diff) | |
download | rails-fa0ce5c790c93473c458a940eabcc7c18995c562.tar.gz rails-fa0ce5c790c93473c458a940eabcc7c18995c562.tar.bz2 rails-fa0ce5c790c93473c458a940eabcc7c18995c562.zip |
Bump bootsnap to a version with disables iseq_cache for Ruby 2.5
- Refs https://github.com/Shopify/bootsnap/pull/257
Diffstat (limited to 'railties/lib/rails')
-rw-r--r-- | railties/lib/rails/generators/rails/app/templates/Gemfile.tt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/lib/rails/generators/rails/app/templates/Gemfile.tt b/railties/lib/rails/generators/rails/app/templates/Gemfile.tt index d7221453e7..cf5462f7dc 100644 --- a/railties/lib/rails/generators/rails/app/templates/Gemfile.tt +++ b/railties/lib/rails/generators/rails/app/templates/Gemfile.tt @@ -28,7 +28,7 @@ ruby <%= "'#{RUBY_VERSION}'" -%> <% if depend_on_bootsnap? -%> # Reduces boot times through caching; required in config/boot.rb -gem 'bootsnap', '>= 1.4.2', require: false +gem 'bootsnap', '>= 1.4.4', require: false <%- end -%> <%- if options.api? -%> |