aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorPrathamesh Sonpatki <csonpatki@gmail.com>2019-04-26 12:55:28 +0530
committerPrathamesh Sonpatki <csonpatki@gmail.com>2019-04-26 12:55:28 +0530
commitfa0ce5c790c93473c458a940eabcc7c18995c562 (patch)
treeb5fdeb975f240db4504f628fbacc5f2718cca145 /railties
parentfb4268401575b5af3d5d2566fd37fc75f34bb93b (diff)
downloadrails-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')
-rw-r--r--railties/lib/rails/generators/rails/app/templates/Gemfile.tt2
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? -%>