Merge RubyGems-3.3.22 and Bundler-2.3.22

This commit is contained in:
Hiroshi SHIBATA 2022-09-16 16:06:06 +09:00 committed by nagachika
parent b3969f769a
commit afb5971031
87 changed files with 943 additions and 434 deletions

View file

@ -180,7 +180,7 @@ class Gem::Platform
# version
(
(@os != "linux" && (@version.nil? || other.version.nil?)) ||
(@os == "linux" && ((@version.nil? && ["gnu", "musl"].include?(other.version)) || (@version == "gnu" && other.version.nil?))) ||
(@os == "linux" && (other.version == "gnu#{@version}" || other.version == "musl#{@version}" || @version == "gnu#{other.version}")) ||
@version == other.version
)
end