From 961756b517548cbd2b4252c05c06fd89c478e0ac Mon Sep 17 00:00:00 2001 From: Samuel Giddins Date: Wed, 22 Feb 2017 11:31:52 +1100 Subject: [LazySpecification] Handle when platform is nil in __materialize__ --- lib/bundler/lazy_specification.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/bundler/lazy_specification.rb b/lib/bundler/lazy_specification.rb index adafa42342..891495c1d4 100644 --- a/lib/bundler/lazy_specification.rb +++ b/lib/bundler/lazy_specification.rb @@ -73,7 +73,7 @@ module Bundler source.gemspec.tap {|s| s.source = source } else search = source.specs.search(search_object).last - if search && search.platform != platform && !search.runtime_dependencies.-(dependencies.reject {|d| d.type == :development }).empty? + if search && Gem::Platform.new(search.platform) != Gem::Platform.new(platform) && !search.runtime_dependencies.-(dependencies.reject {|d| d.type == :development }).empty? Bundler.ui.warn "Unable to use the platform-specific (#{search.platform}) version of #{name} (#{version}) " \ "because it has different dependencies from the #{platform} version. " \ "To use the platform-specific version of the gem, run `bundle config specific_platform true` and install again." -- cgit v1.2.1