Method: Fastlane::Actions::AppaloosaAction.all_screenshots_links
- Defined in:
- fastlane/lib/fastlane/actions/appaloosa.rb
.all_screenshots_links(screenshots) ⇒ Object
133 134 135 136 137 138 139 140 141 142 143 144 145 146 |
# File 'fastlane/lib/fastlane/actions/appaloosa.rb', line 133 def self.all_screenshots_links(screenshots) if screenshots.nil? screens = %w(screenshot1 screenshot2 screenshot3 screenshot4 screenshot5) screenshots = screens.map do |_k, _v| '' end else missings = 5 - screenshots.count (1..missings).map do |_i| screenshots << '' end end screenshots end |