1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

[bundler/bundler] Extract expanded_platforms

https://github.com/bundler/bundler/commit/60d720eb06
This commit is contained in:
David Rodríguez 2019-06-19 15:31:40 +02:00 committed by Hiroshi SHIBATA
parent 3af9d8bb67
commit ff908983be
No known key found for this signature in database
GPG key ID: F9CF13417264FAC2
2 changed files with 6 additions and 2 deletions

View file

@ -892,7 +892,7 @@ module Bundler
next if !remote && !dep.current_platform?
platforms = dep.gem_platforms(sorted_platforms)
if platforms.empty? && !Bundler.settings[:disable_platform_warnings]
mapped_platforms = dep.platforms.map {|p| Dependency::PLATFORM_MAP[p] }
mapped_platforms = dep.expanded_platforms
Bundler.ui.warn \
"The dependency #{dep} will be unused by any of the platforms Bundler is installing for. " \
"Bundler is installing for #{@platforms.join ", "} but the dependency " \

View file

@ -105,11 +105,15 @@ module Bundler
def gem_platforms(valid_platforms)
return valid_platforms if @platforms.empty?
@gem_platforms ||= @platforms.map {|pl| PLATFORM_MAP[pl] }.compact.uniq
@gem_platforms ||= expanded_platforms.compact.uniq
valid_platforms & @gem_platforms
end
def expanded_platforms
@platforms.map {|pl| PLATFORM_MAP[pl] }
end
def should_include?
@should_include && current_env? && current_platform?
end