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
Showing
... | ... | @@ -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' | ||
... | ... |
Please register or sign in to comment