Class: Fastlane::Actions::TestflightAction

Inherits:
Fastlane::Action show all
Defined in:
lib/fastlane/actions/testflight.rb

Documentation collapse

Class Method Summary collapse

Methods inherited from Fastlane::Action

action_name, authors, details, method_missing, other_action, return_value, sh, step_text

Class Method Details

.authorObject



26
27
28
# File 'lib/fastlane/actions/testflight.rb', line 26

def self.author
  'KrauseFx'
end

.available_optionsObject



16
17
18
19
20
# File 'lib/fastlane/actions/testflight.rb', line 16

def self.available_options
  require "pilot"
  require "pilot/options"
  FastlaneCore::CommanderGenerator.new.generate(Pilot::Options.available_options)
end

.descriptionObject



12
13
14
# File 'lib/fastlane/actions/testflight.rb', line 12

def self.description
  "Alias for the pilot action"
end

.is_supported?(platform) ⇒ Boolean

Returns:

  • (Boolean)


30
31
32
# File 'lib/fastlane/actions/testflight.rb', line 30

def self.is_supported?(platform)
  Actions::PilotAction.is_supported?(platform)
end

.outputObject



22
23
24
# File 'lib/fastlane/actions/testflight.rb', line 22

def self.output
  []
end

.run(params) ⇒ Object



4
5
6
# File 'lib/fastlane/actions/testflight.rb', line 4

def self.run(params)
  Actions::PilotAction.run(params)
end