aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bundler/installer.rb
diff options
context:
space:
mode:
authorCarl Lerche <carllerche@mac.com>2010-01-30 18:53:07 -0800
committerCarl Lerche <carllerche@mac.com>2010-01-30 18:53:07 -0800
commitaa736ea9de25771111df89c01f6ee99647a30805 (patch)
tree0bb4f0dc60b98c365d9018b0c2099000537f1e0c /lib/bundler/installer.rb
parentc131309ca737676346119476295a705c44306862 (diff)
downloadbundler-aa736ea9de25771111df89c01f6ee99647a30805.tar.gz
Fix some bugs
Diffstat (limited to 'lib/bundler/installer.rb')
-rw-r--r--lib/bundler/installer.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/bundler/installer.rb b/lib/bundler/installer.rb
index 1861e0fb..f9379e43 100644
--- a/lib/bundler/installer.rb
+++ b/lib/bundler/installer.rb
@@ -107,8 +107,9 @@ module Bundler
index = local_index
sources.each do |source|
+ i = source.specs
Bundler.ui.info "Source: Processing index... "
- index = source.specs.merge(index).freeze
+ index = i.merge(index).freeze
Bundler.ui.info "Done."
end