Class: Fastlane::Action

Inherits:
Object
  • Object
show all
Defined in:
lib/fastlane/action.rb

Direct Known Subclasses

Fastlane::Actions::AddGitTagAction, Fastlane::Actions::CarthageAction, Fastlane::Actions::CertAction, Fastlane::Actions::CleanBuildArtifactsAction, Fastlane::Actions::CocoapodsAction, Fastlane::Actions::CommitVersionBumpAction, Fastlane::Actions::CrashlyticsAction, Fastlane::Actions::DeliverAction, Fastlane::Actions::DeploygateAction, Fastlane::Actions::EnsureGitStatusCleanAction, Fastlane::Actions::FastlaneVersionAction, Fastlane::Actions::FrameitAction, Fastlane::Actions::GcovrAction, Fastlane::Actions::HipchatAction, Fastlane::Actions::HockeyAction, Fastlane::Actions::IncrementBuildNumberAction, Fastlane::Actions::IncrementVersionNumberAction, Fastlane::Actions::IpaAction, Fastlane::Actions::NotifyAction, Fastlane::Actions::OptOutUsageAction, Fastlane::Actions::ProduceAction, Fastlane::Actions::PushToGitRemoteAction, Fastlane::Actions::RegisterDevicesAction, Fastlane::Actions::ResetGitRepoAction, Fastlane::Actions::ResignAction, Fastlane::Actions::S3Action, Fastlane::Actions::SayAction, Fastlane::Actions::SighAction, Fastlane::Actions::SlackAction, Fastlane::Actions::SnapshotAction, Fastlane::Actions::TeamIdAction, Fastlane::Actions::TeamNameAction, Fastlane::Actions::TestmunkAction, Fastlane::Actions::TypetalkAction, Fastlane::Actions::UpdateProjectCodeSigningAction, Fastlane::Actions::XcarchiveAction, Fastlane::Actions::XcbuildAction, Fastlane::Actions::XccleanAction, Fastlane::Actions::XcexportAction, Fastlane::Actions::XcodeSelectAction, Fastlane::Actions::XcodebuildAction, Fastlane::Actions::XctestAction, Fastlane::Actions::XctoolAction

Class Method Summary collapse

Class Method Details

.authorObject



35
36
37
# File 'lib/fastlane/action.rb', line 35

def self.author
  "KrauseFx"
end

.available_optionsObject



17
18
19
20
21
22
23
24
25
# File 'lib/fastlane/action.rb', line 17

def self.available_options
  # Return an array of 2-3 element arrays, like:
  # [
  #   ['app_identifier', 'This value is responsible for X', 'ENVIRONMENT_VARIABLE'],
  #   ['app_identifier', 'This value is responsible for X']
  # ]
  # Take a look at sigh.rb if you're using the config manager of fastlane
  nil
end

.descriptionObject



9
10
11
# File 'lib/fastlane/action.rb', line 9

def self.description
  "No description provided".red
end

.detailsObject



13
14
15
# File 'lib/fastlane/action.rb', line 13

def self.details
  nil # this is your change to provide a more detailed description of this action
end

.outputObject



27
28
29
30
31
32
33
# File 'lib/fastlane/action.rb', line 27

def self.output
  # Return the keys you provide on the shared area
  # [
  #   ['IPA_OUTPUT_PATH', 'The path to the newly generated ipa file']
  # ]
  nil
end

.run(params) ⇒ Object



5
6
7
# File 'lib/fastlane/action.rb', line 5

def self.run(params)
  
end

.sh(command) ⇒ Object

to allow a simple ‘sh` in the custom actions



40
41
42
# File 'lib/fastlane/action.rb', line 40

def self.sh(command)
  Fastlane::Actions.sh(command)
end