summaryrefslogtreecommitdiffstats
path: root/Gemfile
diff options
context:
space:
mode:
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Gemfile b/Gemfile
index 3ede2d4b3..fdb7f8bd6 100644
--- a/Gemfile
+++ b/Gemfile
@@ -75,9 +75,10 @@ group :test do
gem "mocha"
end
-if File.exists?('Gemfile.local')
+local_gemfile = File.join(File.dirname(__FILE__), "Gemfile.local")
+if File.exists?(local_gemfile)
puts "Loading Gemfile.local ..." if $DEBUG # `ruby -d` or `bundle -v`
- instance_eval File.read('Gemfile.local')
+ instance_eval File.read(local_gemfile)
end
# Load plugins' Gemfiles