class Fastlane::Actions::UpdateTransporterPathAction

Public Class Methods

authors() click to toggle source
# File lib/fastlane/plugin/transporter/actions/update_transporter_path_action.rb, line 16
def self.authors
  ["Maksym Grebenets"]
end
available_options() click to toggle source
# File lib/fastlane/plugin/transporter/actions/update_transporter_path_action.rb, line 28
def self.available_options
  [
    FastlaneCore::ConfigItem.new(key: :path,
                            env_name: "UPDATE_TRANSPORTER_PATH",
                         description: "Transporter install path",
                       default_value: Transporter::DEFAULT_TRANSPORTER_INSTALL_PATH,
                            optional: true,
                                type: String)
  ]
end
description() click to toggle source
# File lib/fastlane/plugin/transporter/actions/update_transporter_path_action.rb, line 12
def self.description
  "Configure Fastlane to use custom Transporter installation"
end
details() click to toggle source
# File lib/fastlane/plugin/transporter/actions/update_transporter_path_action.rb, line 24
def self.details
  "Sets the FASTLANE_ITUNES_TRANSPORTER_PATH environment variable"
end
is_supported?(platform) click to toggle source
# File lib/fastlane/plugin/transporter/actions/update_transporter_path_action.rb, line 39
def self.is_supported?(platform)
  [:ios, :mac].include?(platform)
end
return_value() click to toggle source
# File lib/fastlane/plugin/transporter/actions/update_transporter_path_action.rb, line 20
def self.return_value
  # If your method provides a return value, you can describe here what it does
end
run(params) click to toggle source
# File lib/fastlane/plugin/transporter/actions/update_transporter_path_action.rb, line 8
def self.run(params)
  Transporter.update_path(path: params[:path])
end