Sha256: 3a09ebe674bf511125de830e6764824bd965c3b3a44613e077df95e84261fe50
Contents?: true
Size: 928 Bytes
Versions: 460
Compression:
Stored size: 928 Bytes
Contents
module Fastlane class ConfigurationHelper def self.parse(action, params) first_element = (action.available_options || []).first if first_element and first_element.kind_of? FastlaneCore::ConfigItem # default use case return FastlaneCore::Configuration.create(action.available_options, params) elsif first_element UI.error("Old configuration format for action '#{action}'") if Helper.is_test? return params else # No parameters... we still need the configuration object array FastlaneCore::Configuration.create(action.available_options, {}) end rescue => ex if action.respond_to? :action_name UI.error("You passed invalid parameters to '#{action.action_name}'.") UI.error("Check out the error below and available options by running `fastlane action #{action.action_name}`") end raise ex end end end
Version data entries
460 entries across 460 versions & 1 rubygems