Sha256: ed322bad516974cf2b7995b12f60131974d42d1c3c4904778111aa50cccc5524

Contents?: true

Size: 926 Bytes

Versions: 575

Compression:

Stored size: 926 Bytes

Contents

module Fastlane
  class ConfigurationHelper
    def self.parse(action, params)
      first_element = (action.available_options || []).first

      if first_element && 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.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

575 entries across 575 versions & 5 rubygems

Version Path
fastlane-2.113.0.beta.20181219200044 fastlane/lib/fastlane/configuration_helper.rb
fastlane-2.112.0 fastlane/lib/fastlane/configuration_helper.rb
fastlane-2.112.0.beta.20181218200038 fastlane/lib/fastlane/configuration_helper.rb
fastlane-2.112.0.beta.20181217200025 fastlane/lib/fastlane/configuration_helper.rb
fastlane-2.112.0.beta.20181216200018 fastlane/lib/fastlane/configuration_helper.rb
fastlane-2.112.0.beta.20181215200110 fastlane/lib/fastlane/configuration_helper.rb
fastlane-2.112.0.beta.20181214200045 fastlane/lib/fastlane/configuration_helper.rb
fastlane-2.111.0 fastlane/lib/fastlane/configuration_helper.rb
fastlane-2.111.0.beta.20181213200033 fastlane/lib/fastlane/configuration_helper.rb
fastlane-2.111.0.beta.20181213171204 fastlane/lib/fastlane/configuration_helper.rb
fastlane-2.111.0.beta.20181211193527 fastlane/lib/fastlane/configuration_helper.rb
fastlane-2.111.0.beta.20181211193027 fastlane/lib/fastlane/configuration_helper.rb
fastlane-2.110.0 fastlane/lib/fastlane/configuration_helper.rb
fastlane-2.109.1 fastlane/lib/fastlane/configuration_helper.rb
fastlane-2.109.0 fastlane/lib/fastlane/configuration_helper.rb
fastlane-2.108.0 fastlane/lib/fastlane/configuration_helper.rb
fastlane-2.107.0 fastlane/lib/fastlane/configuration_helper.rb
fastlane-2.106.2 fastlane/lib/fastlane/configuration_helper.rb
fastlane-2.106.1 fastlane/lib/fastlane/configuration_helper.rb
fastlane-2.106.0 fastlane/lib/fastlane/configuration_helper.rb