summaryrefslogtreecommitdiff
path: root/lib/bundler/dependency.rb
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2019-06-19 15:31:40 +0200
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2019-08-03 09:29:57 +0900
commitff908983be80f718497e32e60d24ac9b820df52c (patch)
treea75479035100da8bf9c954e12267acc4fcab5276 /lib/bundler/dependency.rb
parent3af9d8bb671cfdc474110af3f2db24e36954d38d (diff)
[bundler/bundler] Extract `expanded_platforms`
https://github.com/bundler/bundler/commit/60d720eb06
Diffstat (limited to 'lib/bundler/dependency.rb')
-rw-r--r--lib/bundler/dependency.rb6
1 files changed, 5 insertions, 1 deletions
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