f30b1d61d9
by removing an unused `begin ... rescue ... end` block. The block is no longer necessary after moving the bootsnap gem to the :default group in eedf735574
.
5 lines
278 B
Ruby
5 lines
278 B
Ruby
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __dir__)
|
|
|
|
# Set up gems listed in the Gemfile.
|
|
require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE'])
|
|
require 'bootsnap/setup' if ENV['RAILS_ENV'] != 'production' || %w(1 yes true).include?(ENV['ENABLE_BOOTSNAP'])
|