Sha256: 3f3d244ef6c9fb44ce324719cc9de2cb2970506865cacf6fa983936be0e1aea2
Contents?: true
Size: 301 Bytes
Versions: 27
Compression:
Stored size: 301 Bytes
Contents
# frozen_string_literal: true require "bundler/gem_helpers" module Bundler module MatchPlatform include GemHelpers def match_platform(p) Gem::Platform::RUBY == platform || platform.nil? || p == platform || generic(Gem::Platform.new(platform)) === p end end end
Version data entries
27 entries across 27 versions & 2 rubygems