aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bundler/installer.rb
diff options
context:
space:
mode:
authorCarlhuda <carlhuda@engineyard.com>2010-02-22 13:04:41 -0800
committerCarlhuda <carlhuda@engineyard.com>2010-02-22 13:04:41 -0800
commitdea3313c163f7ba3ef79bbe344fa8b48ebe780f0 (patch)
tree7cf495b769547c15aed9f5902ecdd0a0eed389ae /lib/bundler/installer.rb
parent500d94d2198ed07c68a53e647f91d21bb088d4de (diff)
downloadbundler-dea3313c163f7ba3ef79bbe344fa8b48ebe780f0.tar.gz
Remember the --without option for bundle install
Diffstat (limited to 'lib/bundler/installer.rb')
-rw-r--r--lib/bundler/installer.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/installer.rb b/lib/bundler/installer.rb
index dd598b7c..6b232c20 100644
--- a/lib/bundler/installer.rb
+++ b/lib/bundler/installer.rb
@@ -18,7 +18,7 @@ module Bundler
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
+ if spec.groups & Bundler.settings.without == spec.groups
Bundler.ui.debug " * Not in requested group; skipping."
next
end