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 /Gemfile | |
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 'Gemfile')
-rw-r--r-- | Gemfile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -2,6 +2,8 @@ source 'https://rubygems.org' gem 'rails', '5.2.3' +gem 'bootsnap', '~> 1.4' + # Improves copy-on-write performance for MRI gem 'nakayoshi_fork', '~> 0.0.4' @@ -329,7 +331,6 @@ group :development do end group :development, :test do - gem 'bootsnap', '~> 1.4' gem 'bullet', '~> 5.5.0', require: !!ENV['ENABLE_BULLET'] gem 'pry-byebug', '~> 3.5.1', platform: :mri gem 'pry-rails', '~> 0.3.4' |