class Gem::Platform

Experimental RBS support (using type sampling data from the type_fusion project).

# sig/bundler/rubygems_ext.rbs

class Gem::Platform
  def ===: (Gem::Platform other) -> true
end

def ===(other)

Experimental RBS support (using type sampling data from the type_fusion project).

def ===: (Gem::Platform other) -> true

This signature was generated using 8 samples from 2 applications.

def ===(other)
  return nil unless Gem::Platform === other
  # universal-mingw32 matches x64-mingw-ucrt
  return true if (@cpu == "universal" || other.cpu == "universal") &&
                 @os.start_with?("mingw") && other.os.start_with?("mingw")
  # cpu
  ([nil,"universal"].include?(@cpu) || [nil, "universal"].include?(other.cpu) || @cpu == other.cpu ||
  (@cpu == "arm" && other.cpu.start_with?("arm"))) &&
    # os
    @os == other.os &&
    # version
    (
      (@os != "linux" && (@version.nil? || other.version.nil?)) ||
      (@os == "linux" && (normalized_linux_version_ext == other.normalized_linux_version_ext || ["musl#{@version}", "musleabi#{@version}", "musleabihf#{@version}"].include?(other.version))) ||
      @version == other.version
    )
end

def normalized_linux_version_ext

Once only 3.3.23 is supported, we can use the method in RubyGems.
This is a copy of RubyGems 3.3.23 or higher `normalized_linux_method`.
def normalized_linux_version_ext
  return nil unless @version
  without_gnu_nor_abi_modifiers = @version.sub(/\Agnu/, "").sub(/eabi(hf)?\Z/, "")
  return nil if without_gnu_nor_abi_modifiers.empty?
  without_gnu_nor_abi_modifiers
end