summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2019-06-19 15:31:40 +0200
committerDavid Rodríguez <deivid.rodriguez@riseup.net>2019-07-10 12:08:14 +0200
commit60d720eb065cfb0a87c3db89ba471739d5f9386c (patch)
tree071178452702600cbfbe6532f443c348fe416396
parent9f07207d64c7044c35774f852f56aedadf863e22 (diff)
downloadbundler-60d720eb065cfb0a87c3db89ba471739d5f9386c.tar.gz
Extract `expanded_platforms`
-rw-r--r--lib/bundler/definition.rb2
-rw-r--r--lib/bundler/dependency.rb6
2 files changed, 6 insertions, 2 deletions
diff --git a/lib/bundler/definition.rb b/lib/bundler/definition.rb
index 33e7b16aeb..562b1a0ed1 100644
--- a/lib/bundler/definition.rb
+++ b/lib/bundler/definition.rb
@@ -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 " \
diff --git a/lib/bundler/dependency.rb b/lib/bundler/dependency.rb
index 55ffea02b6..6c2642163e 100644
--- a/lib/bundler/dependency.rb
+++ b/lib/bundler/dependency.rb
@@ -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