module Bundler::MatchPlatform

def match_platform(p)

def match_platform(p)
  Gem::Platform::RUBY == platform ||
    platform.nil? || p == platform ||
    generic(Gem::Platform.new(platform)) === p
end