aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bundler/installer.rb
diff options
context:
space:
mode:
authorCarl Lerche <carllerche@mac.com>2010-03-09 22:09:19 -0800
committerCarl Lerche <carllerche@mac.com>2010-03-09 22:11:09 -0800
commit529d792205b2cf66cad7179f32baee391b46e545 (patch)
tree229b2be4e7b71eb4a10f5f72cc029a507fb087de /lib/bundler/installer.rb
parent3a383f813acdba5bb465e42952f43d51c4a58b2e (diff)
downloadbundler-529d792205b2cf66cad7179f32baee391b46e545.tar.gz
Use tsort to order specifications. It makes teh crazy work.
Diffstat (limited to 'lib/bundler/installer.rb')
-rw-r--r--lib/bundler/installer.rb4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/bundler/installer.rb b/lib/bundler/installer.rb
index d58b7c64..2638dadc 100644
--- a/lib/bundler/installer.rb
+++ b/lib/bundler/installer.rb
@@ -26,9 +26,7 @@ module Bundler
next
end
- # unless spec.source.is_a?(Source::SystemGems)
- Bundler.ui.info "Installing #{spec.name} (#{spec.version}) from #{spec.source} "
- # end
+ Bundler.ui.info "Installing #{spec.name} (#{spec.version}) from #{spec.source} "
spec.source.install(spec)