aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bundler/installer.rb
diff options
context:
space:
mode:
authorCarlhuda <carlhuda@engineyard.com>2010-02-03 15:30:12 -0800
committerCarlhuda <carlhuda@engineyard.com>2010-02-03 15:30:12 -0800
commiteec57fbd360866323a63226b5d24efc9d94c3268 (patch)
tree7406ebffe46eecbe7595f39bab517e85f032e6af /lib/bundler/installer.rb
parent93cda9ad74975b8d4930cfe0591f64bd237e9237 (diff)
downloadbundler-eec57fbd360866323a63226b5d24efc9d94c3268.tar.gz
Updated the bundle install output
Diffstat (limited to 'lib/bundler/installer.rb')
-rw-r--r--lib/bundler/installer.rb14
1 files changed, 9 insertions, 5 deletions
diff --git a/lib/bundler/installer.rb b/lib/bundler/installer.rb
index be712195..37707fc1 100644
--- a/lib/bundler/installer.rb
+++ b/lib/bundler/installer.rb
@@ -20,15 +20,19 @@ module Bundler
end
specs.sort_by { |s| s.name }.each do |spec|
- Bundler.ui.info "* #{spec.name} (#{spec.version})"
+ # unless spec.source.is_a?(Source::SystemGems)
+ Bundler.ui.info "Installing #{spec.name} (#{spec.version}) from #{spec.source} "
+ # end
+
if (spec.groups & options[:without]).any?
- Bundler.ui.info " * Not in requested group... skipping."
+ Bundler.ui.debug " * Not in requested group... skipping."
next
end
spec.source.install(spec)
+ Bundler.ui.info ""
end
- Bundler.ui.confirm "You have bundles. Now, go have fun."
+ Bundler.ui.confirm "Your bundle is complete!"
end
def dependencies
@@ -112,9 +116,9 @@ module Bundler
sources.each do |source|
i = source.specs
- Bundler.ui.info "Source: Processing index... "
+ Bundler.ui.debug "Source: Processing index... "
index = i.merge(index).freeze
- Bundler.ui.info "Done."
+ Bundler.ui.debug "Done."
end
index