canvas-lms/Gemfile

15 lines
682 B
Ruby
Raw Normal View History

# 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: this file has to use 1.8.7 hash syntax to not raise a parser exception on 1.8.7
source 'https://rubygems.org/'
2011-02-01 09:57:29 +08:00
require File.expand_path("../config/canvas_rails3", __FILE__)
Dir.glob(File.join(File.dirname(__FILE__), 'Gemfile.d', '*.rb')).sort.each do |file|
eval File.read(file), binding, file
2011-02-01 09:57:29 +08:00
end