aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bundler/installer.rb
diff options
context:
space:
mode:
authorCarl Lerche <carllerche@mac.com>2010-04-26 14:46:06 -0700
committerCarl Lerche <carllerche@mac.com>2010-04-26 14:46:06 -0700
commit3be9c937ba2a1cc3855be5372813ac30d63053a7 (patch)
tree434c0e715eba94ce02fb5952e3b8404dfadb0ae6 /lib/bundler/installer.rb
parenta6097c588b4e068d6968132b20d30fda50536b5c (diff)
downloadbundler-3be9c937ba2a1cc3855be5372813ac30d63053a7.tar.gz
Move the index builder onto the definition class
Diffstat (limited to 'lib/bundler/installer.rb')
-rw-r--r--lib/bundler/installer.rb6
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/bundler/installer.rb b/lib/bundler/installer.rb
index ab0b0dba..f40000a3 100644
--- a/lib/bundler/installer.rb
+++ b/lib/bundler/installer.rb
@@ -60,11 +60,5 @@ module Bundler
def ambiguous?(dep)
dep.requirement.requirements.any? { |op,_| op != '=' }
end
-
- def remote_index
- @remote_index ||= Index.build do |idx|
- sources.each { |source| idx.use source.specs }
- end
- end
end
end