diff options
author | Benoit Daloze <[email protected]> | 2020-04-07 18:09:13 +0200 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2020-05-08 07:38:50 +0900 |
commit | fe2b83e2250158e69933c703f3a6666ebf1ac721 () | |
tree | 7ee7420d29f6d6f1928e56c8b4cdeb2d207cc347 /lib/rubygems/basic_specification.rb | |
parent | 1464719f5feabaa237902e59f482792641901c1a (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.rb | 2 |
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 |