method
match
v2_1_10 -
Show latest stable
- Class:
Gem::Platform
match(platform)public
No documentation available.
# File lib/rubygems/platform.rb, line 24
def self.match(platform)
Gem.platforms.any? do |local_platform|
platform.nil? or
local_platform == platform or
(local_platform != Gem::Platform::RUBY and local_platform =~ platform)
end
end