summaryrefslogtreecommitdiffstats
path: root/config/boot.rb
blob: 89040bd90785bf552284971427f798698e2c5bf6 (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

# Set up gems listed in the Gemfile.
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)

require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE'])

# Explicitly load 'logger' to avoid NameError with concurrent-ruby 1.3.5.
# Reference: https://github.com/rails/rails/issues/54272
require 'logger'