diff options
author | Stan Hu <stanhu@gmail.com> | 2019-07-19 13:00:46 -0700 |
---|---|---|
committer | Stan Hu <stanhu@gmail.com> | 2019-07-19 13:13:44 -0700 |
commit | eedf735574b9f6c7c6c843943dd946ce84238236 (patch) | |
tree | 4004417e33b7dcef1c693d878c4fdc17151d8f60 /config | |
parent | eb3f465e75ee1fc5ef582e9f01f921626d7cf5cc (diff) | |
download | gitlab-ce-eedf735574b9f6c7c6c843943dd946ce84238236.tar.gz |
Make Bootsnap available via ENABLE_BOOTSNAP=1
Bootsnap speeds up Rails loading and now ships by default with Rails 5.2
apps. We should promote this to a default gem and test it out in
production. This will also make it possible for the Helm Charts to take
advantage of this.
It appears that Bootsnap with Rails 5.2.3 and all the GitLab CE gems
loads fine on an ARM platform now, so it's possible that
https://gitlab.com/gitlab-org/gitlab-ce/issues/34799 has been resolved.
Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/45230
Diffstat (limited to 'config')
-rw-r--r-- | config/boot.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/boot.rb b/config/boot.rb index b76b26a5e75..2eacff868eb 100644 --- a/config/boot.rb +++ b/config/boot.rb @@ -3,7 +3,7 @@ ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __dir__) # Set up gems listed in the Gemfile. require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE']) begin - require 'bootsnap/setup' unless ENV['DISABLE_BOOTSNAP'] + require 'bootsnap/setup' if ENV['RAILS_ENV'] != 'production' || %w(1 yes true).include?(ENV['ENABLE_BOOTSNAP']) rescue LoadError # bootsnap is an optional dependency, so if we don't have it, it's fine end |