module Bundler::GemHelpers

def select_best_platform_match(specs, platform)

def select_best_platform_match(specs, platform)
  matching = specs.select {|spec| spec.match_platform(platform) }
  sort_best_platform_match(matching, platform)
end