aboutsummaryrefslogtreecommitdiffstats
path: root/Gemfile
diff options
context:
space:
mode:
authorBurke Libbey <burke@libbey.me>2017-06-01 14:28:51 -0400
committerBurke Libbey <burke@libbey.me>2017-07-17 13:17:45 -0400
commit0312a5c67e35b960e33677b5358c539f1047e4e1 (patch)
tree26f25351ba0e824a40b7e26ed08782942cae431f /Gemfile
parent9914964514fc43f6eadba06a47fccdf95b7806f7 (diff)
downloadrails-0312a5c67e35b960e33677b5358c539f1047e4e1.tar.gz
rails-0312a5c67e35b960e33677b5358c539f1047e4e1.tar.bz2
rails-0312a5c67e35b960e33677b5358c539f1047e4e1.zip
Add bootsnap to default Gemfile:
Bootsnap precomputes load path resolution and caches ruby ISeq and YAML parsing/compilation, reducing application boot time by approximately 50% on supported configurations.
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Gemfile b/Gemfile
index 1fbf223d64..ccf73206b1 100644
--- a/Gemfile
+++ b/Gemfile
@@ -54,6 +54,9 @@ gem "libxml-ruby", platforms: :ruby
# Action View. For testing Erubis handler deprecation.
gem "erubis", "~> 2.7.0", require: false
+# for railties app_generator_test
+gem "bootsnap", ">= 1.1.0", require: false
+
# Active Job.
group :job do
gem "resque", require: false