summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2010-11-05 00:52:19 -0700
committerAndre Arko <andre@arko.net>2010-11-05 01:25:41 -0700
commit7dd2d22a09143329b4f55cbee814da899b3fc827 (patch)
tree9bdeb28f157a54887a1f3654fb38c468bb01c444
parentba3b7db50d3504e72e2c037d5ea9efe69923f88a (diff)
downloadbundler-7dd2d22a09143329b4f55cbee814da899b3fc827.tar.gz
Print the path gems were used/installed from in debug mode
-rw-r--r--lib/bundler/installer.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/bundler/installer.rb b/lib/bundler/installer.rb
index 938b9dc4f9..c1fbada82d 100644
--- a/lib/bundler/installer.rb
+++ b/lib/bundler/installer.rb
@@ -53,6 +53,7 @@ module Bundler
old_args = Gem::Command.build_args
Gem::Command.build_args = [Bundler.settings["build.#{spec.name}"]]
spec.source.install(spec)
+ Bundler.ui.debug "from #{spec.loaded_from} "
ensure
Gem::Command.build_args = old_args
end