Flowdock
method

match

Importance_0
v1_9_3_125 - Show latest stable - 0 notes - Class: Platform
match(platform) public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/rubygems/platform.rb, line 22
  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
Register or log in to add new notes.