29 lines
1.2 KiB
Ruby
29 lines
1.2 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
# What have they done to the Gemfile???
|
|
#
|
|
# Relax. Breathe deep. All the gems are still there; they're just loaded in
|
|
# various files in Gemfile.d/. This allows us to require gems locally that we
|
|
# might not want to commit to our public repo. We can maintain a customized
|
|
# list of gems for development and debuggery, without affecting our ability to
|
|
# merge with canvas-lms
|
|
#
|
|
# NOTE: some files in Gemfile.d/ will have certain required gems indented.
|
|
# While this may seem arbitrary, it actually has semantic significance. An
|
|
# indented gem required in Gemfile is a gem that is NOT directly used by
|
|
# Canvas, but required by a gem that is used by Canvas. We lock into specific
|
|
# versions of these gems to prevent regression, and the indentation serves to
|
|
# alert us to the relationship between the gem and canvas-lms
|
|
|
|
source 'https://rubygems.org/'
|
|
|
|
Dir[File.join(File.dirname(__FILE__), 'gems/plugins/*/Gemfile.d/_before.rb')].each do |file|
|
|
eval(File.read(file), nil, file) # rubocop:disable Security/Eval
|
|
end
|
|
|
|
require File.expand_path('config/canvas_rails_switcher', __dir__)
|
|
|
|
Dir.glob(File.join(File.dirname(__FILE__), 'Gemfile.d', '*.rb')).sort.each do |file|
|
|
eval(File.read(file), nil, file) # rubocop:disable Security/Eval
|
|
end
|