2018-03-21 18:37:57 -04:00
|
|
|
def rails5?
|
|
|
|
%w[1 true].include?(ENV["RAILS5"])
|
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
|
2018-03-21 18:37:57 -04:00
|
|
|
require 'rubygems' unless rails5?
|
|
|
|
|
|
|
|
gemfile = rails5? ? "Gemfile.rails5" : "Gemfile"
|
|
|
|
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../#{gemfile}", __dir__)
|
2011-10-08 17:36:38 -04:00
|
|
|
|
2018-03-21 18:37:57 -04:00
|
|
|
# Set up gems listed in the Gemfile.
|
2016-05-08 17:33:34 -04:00
|
|
|
require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE'])
|