summaryrefslogtreecommitdiff
path: root/lib/rubygems/basic_specification.rb
diff options
context:
space:
mode:
authorBenoit Daloze <[email protected]>2020-04-07 18:09:13 +0200
committerHiroshi SHIBATA <[email protected]>2020-05-08 07:38:50 +0900
commitfe2b83e2250158e69933c703f3a6666ebf1ac721 ()
tree7ee7420d29f6d6f1928e56c8b4cdeb2d207cc347 /lib/rubygems/basic_specification.rb
parent1464719f5feabaa237902e59f482792641901c1a (diff)
[rubygems/rubygems] Fix platform comparison bug in #contains_requirable_file?
* One should not compare RUBY_ENGINE and Gem::Platform. * Introduced in https://.com/rubygems/rubygems/pull/2672 https://.com/rubygems/rubygems/commit/0e62c3be91
Notes: Merged: https://.com/ruby/ruby/pull/3087
-rw-r--r--lib/rubygems/basic_specification.rb2
1 files changed, 1 insertions, 1 deletions
@@ -78,7 +78,7 @@ class Gem::BasicSpecification
elsif missing_extensions?
@ignored = true
- if RUBY_ENGINE == platform || Gem::Platform.local === platform
warn "Ignoring #{full_name} because its extensions are not built. " +
"Try: gem pristine #{name} --version #{version}"
end