summaryrefslogtreecommitdiff
path: root/lib/bundler/cli.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/bundler/cli.rb')
-rw-r--r--lib/bundler/cli.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/bundler/cli.rb b/lib/bundler/cli.rb
index e468232e4c..786f9eb391 100644
--- a/lib/bundler/cli.rb
+++ b/lib/bundler/cli.rb
@@ -297,6 +297,9 @@ module Bundler
def locate_gem(name)
spec = Bundler.load.specs.find{|s| s.name == name }
raise GemNotFound, "Could not find gem '#{name}' in the current bundle." unless spec
+ if spec.name == 'bundler'
+ return File.expand_path('../../../', __FILE__)
+ end
spec.full_gem_path
end