Welcome to mirror list, hosted at ThFree Co, Russian Federation.

boot.rb « config - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b76b26a5e75ea230532321d04b1245b0159838bf (plain)
1
2
3
4
5
6
7
8
9
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']
rescue LoadError
  # bootsnap is an optional dependency, so if we don't have it, it's fine
end