aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorCarl Lerche <carllerche@mac.com>2010-04-23 13:42:59 -0700
committerCarl Lerche <carllerche@mac.com>2010-04-23 13:42:59 -0700
commitb533b44075073ac0c49cd7e01a6c1dc88c2bdcd4 (patch)
treecacb9c42a7658055c271679ecf390460b940da8f /lib
parentf7cc3d6d6d960ffcde467af86384e3d8738c5d78 (diff)
downloadbundler-b533b44075073ac0c49cd7e01a6c1dc88c2bdcd4.tar.gz
Oh yeah, so many lines gone
Diffstat (limited to 'lib')
-rw-r--r--lib/bundler/installer.rb12
1 files changed, 1 insertions, 11 deletions
diff --git a/lib/bundler/installer.rb b/lib/bundler/installer.rb
index 2ee70ebe..a35632fc 100644
--- a/lib/bundler/installer.rb
+++ b/lib/bundler/installer.rb
@@ -63,17 +63,7 @@ module Bundler
def remote_index
@remote_index ||= Index.build do |idx|
- rubygems, other = sources.partition { |s| Source::Rubygems === s }
-
- other.each do |source|
- Bundler.ui.debug "Source: Processing index"
- idx.use source.specs
- end
-
- rubygems.each do |source|
- Bundler.ui.debug "Source: Processing index"
- idx.use source.specs
- end
+ sources.each { |source| idx.use source.specs }
end
end
end