Module: Bundler::GemHelpers
- Included in:
- Definition, MatchPlatform, Resolver::SpecGroup
- Defined in:
- lib/bundler/gem_helpers.rb
Defined Under Namespace
Classes: PlatformMatch
Constant Summary collapse
- GENERIC_CACHE =
rubocop:disable Style/MutableConstant
{ Gem::Platform::RUBY => Gem::Platform::RUBY }
- GENERICS =
[ [Gem::Platform.new("java"), Gem::Platform.new("java")], [Gem::Platform.new("mswin32"), Gem::Platform.new("mswin32")], [Gem::Platform.new("mswin64"), Gem::Platform.new("mswin64")], [Gem::Platform.new("universal-mingw32"), Gem::Platform.new("universal-mingw32")], [Gem::Platform.new("x64-mingw32"), Gem::Platform.new("x64-mingw32")], [Gem::Platform.new("x86_64-mingw32"), Gem::Platform.new("x64-mingw32")], [Gem::Platform.new("mingw32"), Gem::Platform.new("x86-mingw32")], ].freeze
Class Method Summary collapse
- .generic(p) ⇒ Object
- .generic_local_platform ⇒ Object
- .local_platform ⇒ Object
- .platform_specificity_match(spec_platform, user_platform) ⇒ Object
- .same_deps(spec, exemplary_spec) ⇒ Object
- .same_specificity(platform, spec, exemplary_spec) ⇒ Object
- .select_best_platform_match(specs, platform) ⇒ Object
Class Method Details
.generic(p) ⇒ Object
16 17 18 19 20 21 22 23 |
# File 'lib/bundler/gem_helpers.rb', line 16 def generic(p) GENERIC_CACHE[p] ||= begin _, found = GENERICS.find do |match, _generic| p.os == match.os && (!match.cpu || p.cpu == match.cpu) end found || Gem::Platform::RUBY end end |
.generic_local_platform ⇒ Object
26 27 28 |
# File 'lib/bundler/gem_helpers.rb', line 26 def generic_local_platform generic(local_platform) end |
.local_platform ⇒ Object
31 32 33 |
# File 'lib/bundler/gem_helpers.rb', line 31 def local_platform Bundler.local_platform end |
.platform_specificity_match(spec_platform, user_platform) ⇒ Object
36 37 38 39 40 |
# File 'lib/bundler/gem_helpers.rb', line 36 def platform_specificity_match(spec_platform, user_platform) spec_platform = Gem::Platform.new(spec_platform) PlatformMatch.specificity_score(spec_platform, user_platform) end |
.same_deps(spec, exemplary_spec) ⇒ Object
101 102 103 104 105 106 107 |
# File 'lib/bundler/gem_helpers.rb', line 101 def same_deps(spec, exemplary_spec) same_runtime_deps = spec.dependencies.sort == exemplary_spec.dependencies.sort return same_runtime_deps unless spec.is_a?(Gem::Specification) && exemplary_spec.is_a?(Gem::Specification) = spec.required_ruby_version == exemplary_spec.required_ruby_version && spec.required_rubygems_version == exemplary_spec.required_rubygems_version same_runtime_deps && end |
.same_specificity(platform, spec, exemplary_spec) ⇒ Object
96 97 98 |
# File 'lib/bundler/gem_helpers.rb', line 96 def same_specificity(platform, spec, exemplary_spec) platform_specificity_match(spec.platform, platform) == platform_specificity_match(exemplary_spec.platform, platform) end |
.select_best_platform_match(specs, platform) ⇒ Object
43 44 45 46 47 48 49 50 51 52 |
# File 'lib/bundler/gem_helpers.rb', line 43 def select_best_platform_match(specs, platform) matching = specs.select {|spec| spec.match_platform(platform) } exact = matching.select {|spec| spec.platform == platform } return exact if exact.any? sorted_matching = matching.sort_by {|spec| platform_specificity_match(spec.platform, platform) } exemplary_spec = sorted_matching.first sorted_matching.take_while{|spec| same_specificity(platform, spec, exemplary_spec) && same_deps(spec, exemplary_spec) } end |