aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bundler/installer.rb
diff options
context:
space:
mode:
authorCarlhuda <carlhuda@engineyard.com>2010-02-22 12:12:04 -0800
committerCarlhuda <carlhuda@engineyard.com>2010-02-22 12:12:04 -0800
commit500d94d2198ed07c68a53e647f91d21bb088d4de (patch)
treed5a3ab747abf9087ea871bd9dac551be40ef0cef /lib/bundler/installer.rb
parentdbba06a3e805259388cf367c5ab8f83fe1141570 (diff)
downloadbundler-500d94d2198ed07c68a53e647f91d21bb088d4de.tar.gz
Using --without does not change resolves at runtime
Diffstat (limited to 'lib/bundler/installer.rb')
-rw-r--r--lib/bundler/installer.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/bundler/installer.rb b/lib/bundler/installer.rb
index eb182af2..dd598b7c 100644
--- a/lib/bundler/installer.rb
+++ b/lib/bundler/installer.rb
@@ -16,6 +16,8 @@ module Bundler
FileUtils.mkdir_p(Bundler.bundle_path)
specs.sort_by { |s| s.name }.each do |spec|
+ spec.source.fetch(spec) if spec.source.respond_to?(:fetch)
+
if spec.groups & options[:without] == spec.groups
Bundler.ui.debug " * Not in requested group; skipping."
next