summaryrefslogtreecommitdiff
path: root/lib/bundler/spec_set.rb
diff options
context:
space:
mode:
authorSamuel Giddins <segiddins@segiddins.me>2017-06-22 11:48:23 -0500
committerSamuel Giddins <segiddins@segiddins.me>2017-06-22 11:49:00 -0500
commit212ad80f85766624888272ceb5f2adecf673beb9 (patch)
treed40bab05b93b45418501a00da7b0e2b057b226c4 /lib/bundler/spec_set.rb
parent6f63e51b5f8f4afb70c75efe192e6c22546cab00 (diff)
downloadbundler-212ad80f85766624888272ceb5f2adecf673beb9.tar.gz
[SpecSet] Pass the correct raise_if_missing parameter in #materialize
Diffstat (limited to 'lib/bundler/spec_set.rb')
-rw-r--r--lib/bundler/spec_set.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/spec_set.rb b/lib/bundler/spec_set.rb
index 9642633578..e68da87704 100644
--- a/lib/bundler/spec_set.rb
+++ b/lib/bundler/spec_set.rb
@@ -76,7 +76,7 @@ module Bundler
end
def materialize(deps, missing_specs = nil)
- materialized = self.for(deps, [], false, true, missing_specs).to_a
+ materialized = self.for(deps, [], false, true, !missing_specs).to_a
deps = materialized.map(&:name).uniq
materialized.map! do |s|
next s unless s.is_a?(LazySpecification)