aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bundler/installer.rb
diff options
context:
space:
mode:
authorCarl Lerche <carllerche@mac.com>2010-02-21 16:45:12 -0800
committerCarl Lerche <carllerche@mac.com>2010-02-21 16:45:12 -0800
commitdbba06a3e805259388cf367c5ab8f83fe1141570 (patch)
tree4b6743152fb76c81a2c88af56a646331675cdbeb /lib/bundler/installer.rb
parentec285effa1b497b2345e6f32e8205d955d28e3c7 (diff)
downloadbundler-dbba06a3e805259388cf367c5ab8f83fe1141570.tar.gz
Fix a little bit of stupid in bundle install --without.
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 affc6673..eb182af2 100644
--- a/lib/bundler/installer.rb
+++ b/lib/bundler/installer.rb
@@ -16,7 +16,7 @@ module Bundler
FileUtils.mkdir_p(Bundler.bundle_path)
specs.sort_by { |s| s.name }.each do |spec|
- if (spec.groups & options[:without]).any?
+ if spec.groups & options[:without] == spec.groups
Bundler.ui.debug " * Not in requested group; skipping."
next
end