aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bundler
diff options
context:
space:
mode:
authorCarl Lerche <carllerche@mac.com>2010-05-05 03:09:14 -0700
committerCarl Lerche <carllerche@mac.com>2010-05-05 03:09:14 -0700
commit8f3f7840bbb5fe6700b1c4a0329beccd067998e0 (patch)
treeeaabfd05b6edb633f420f22b1aa9818895b57fd3 /lib/bundler
parentfe6687403b71abaff827b85ca872368561a819c9 (diff)
downloadbundler-8f3f7840bbb5fe6700b1c4a0329beccd067998e0.tar.gz
Move install output into the respective sources
Diffstat (limited to 'lib/bundler')
-rw-r--r--lib/bundler/installer.rb5
-rw-r--r--lib/bundler/source.rb4
2 files changed, 2 insertions, 7 deletions
diff --git a/lib/bundler/installer.rb b/lib/bundler/installer.rb
index aaf911d8..ede5045e 100644
--- a/lib/bundler/installer.rb
+++ b/lib/bundler/installer.rb
@@ -32,11 +32,6 @@ module Bundler
next
end
- if [Source::Rubygems].include?(spec.source.class)
- Bundler.ui.info "Installing #{spec.name} (#{spec.version}) from #{spec.source}"
- else
- Bundler.ui.info "Using #{spec.name} (#{spec.version}) from #{spec.source}"
- end
spec.source.install(spec)
end
diff --git a/lib/bundler/source.rb b/lib/bundler/source.rb
index 845d46e0..c292a488 100644
--- a/lib/bundler/source.rb
+++ b/lib/bundler/source.rb
@@ -52,7 +52,7 @@ module Bundler
end
def install(spec)
- Bundler.ui.debug " * Installing"
+ Bundler.ui.info "Installing #{spec.name} (#{spec.version})"
# TODO: Stop doing craz
# I'm not going to bother tracking which cache gem the spec
# came from, so I'm going to just loop over the caches in
@@ -252,7 +252,7 @@ module Bundler
end
def install(spec)
- Bundler.ui.debug " * Using path #{path}"
+ Bundler.ui.info "Using #{spec.name} (#{spec.version}) from #{to_s}"
generate_bin(spec)
end