aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bundler/installer.rb
diff options
context:
space:
mode:
authorCarl Lerche <carllerche@mac.com>2010-03-10 19:49:14 -0800
committerCarl Lerche <carllerche@mac.com>2010-03-10 19:49:14 -0800
commit76c89b12a5b65d09ba9841c4a36b6dca2a41efaa (patch)
tree478fa4bf41f3d051191f5552f6bf1813a8d80107 /lib/bundler/installer.rb
parenta9cf4d091b92906fbe85519c230c5b0cdf9b5d5a (diff)
downloadbundler-76c89b12a5b65d09ba9841c4a36b6dca2a41efaa.tar.gz
Unify the Installer's local index and the runtime index
Diffstat (limited to 'lib/bundler/installer.rb')
-rw-r--r--lib/bundler/installer.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/bundler/installer.rb b/lib/bundler/installer.rb
index 516ea025..cf9b8a9d 100644
--- a/lib/bundler/installer.rb
+++ b/lib/bundler/installer.rb
@@ -112,8 +112,7 @@ module Bundler
def local_index
@local_index ||= Index.build do |idx|
idx.use runtime_gems
- idx.use Index.application_cached_gems # vendor/cache
- idx.use Index.system_cached_gems # $GEM_HOME/cache
+ idx.use Index.cached_gems
end
end