mirror of
https://github.com/redmine/redmine.git
synced 2026-01-28 02:09:58 +01:00
git-svn-id: https://svn.redmine.org/redmine/branches/5.1-stable@23442 e93f8b46-1217-0410-a6f0-8f06a7374b81
11 lines
350 B
Ruby
11 lines
350 B
Ruby
# 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'
|