From fe2b83e2250158e69933c703f3a6666ebf1ac721 Mon Sep 17 00:00:00 2001 From: Benoit Daloze Date: Tue, 7 Apr 2020 18:09:13 +0200 Subject: [PATCH] [rubygems/rubygems] Fix platform comparison bug in #contains_requirable_file? * One should not compare RUBY_ENGINE and Gem::Platform. * Introduced in https://github.com/rubygems/rubygems/pull/2672 https://github.com/rubygems/rubygems/commit/0e62c3be91 --- lib/rubygems/basic_specification.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/rubygems/basic_specification.rb b/lib/rubygems/basic_specification.rb index 816fc8cb8f..0e65f26d10 100644 --- a/lib/rubygems/basic_specification.rb +++ b/lib/rubygems/basic_specification.rb @@ -78,7 +78,7 @@ class Gem::BasicSpecification elsif missing_extensions? @ignored = true - if RUBY_ENGINE == platform || Gem::Platform.local === platform + if Gem::Platform::RUBY == platform || Gem::Platform.local === platform warn "Ignoring #{full_name} because its extensions are not built. " + "Try: gem pristine #{name} --version #{version}" end