Module: Bundler::MatchPlatform

Includes:
GemHelpers
Included in:
LazySpecification, RemoteSpecification, Gem::Specification
Defined in:
lib/bundler/match_platform.rb

Constant Summary

Constants included from GemHelpers

GemHelpers::GENERICS, GemHelpers::GENERIC_CACHE

Class Method Summary collapse

Instance Method Summary collapse

Methods included from GemHelpers

force_ruby_platform, generic, generic_local_platform, generic_local_platform_is_ruby?, local_platform, platform_specificity_match, same_deps, same_specificity, select_best_platform_match, sort_best_platform_match

Class Method Details

.platforms_match?(gemspec_platform, local_platform) ⇒ Boolean

Returns:

  • (Boolean)


13
14
15
16
17
18
19
20
21
# File 'lib/bundler/match_platform.rb', line 13

def self.platforms_match?(gemspec_platform, local_platform)
  return true if gemspec_platform.nil?
  return true if gemspec_platform == Gem::Platform::RUBY
  return true if local_platform == gemspec_platform
  gemspec_platform = Gem::Platform.new(gemspec_platform)
  return true if gemspec_platform === local_platform

  false
end

Instance Method Details

#match_platform(p) ⇒ Object



9
10
11
# File 'lib/bundler/match_platform.rb', line 9

def match_platform(p)
  MatchPlatform.platforms_match?(platform, p)
end