##// END OF EJS Templates
Load Gemfile.local if present....
Jean-Philippe Lang -
r9212:2658730302bd
parent child
Show More
@@ -75,6 +75,11 group :test do
75 gem "mocha"
75 gem "mocha"
76 end
76 end
77
77
78 if File.exists?('Gemfile.local')
79 puts "Loading Gemfile.local ..." if $DEBUG # `ruby -d` or `bundle -v`
80 instance_eval File.read('Gemfile.local')
81 end
82
78 # Load plugins' Gemfiles
83 # Load plugins' Gemfiles
79 Dir.glob File.expand_path("../vendor/plugins/*/Gemfile", __FILE__) do |file|
84 Dir.glob File.expand_path("../vendor/plugins/*/Gemfile", __FILE__) do |file|
80 puts "Loading #{file} ..." if $DEBUG # `ruby -d` or `bundle -v`
85 puts "Loading #{file} ..." if $DEBUG # `ruby -d` or `bundle -v`
General Comments 0
You need to be logged in to leave comments. Login now