Class: Fastlane::Actions::GsExecuteExternalRunnerLaneAction

Inherits:
Action
  • Object
show all
Defined in:
lib/fastlane/plugin/gs_project_flow_ios/actions/gs_execute_external_runner_lane.rb

Class Method Summary collapse

Class Method Details

.authorsObject



13
14
15
# File 'lib/fastlane/plugin/gs_project_flow_ios/actions/gs_execute_external_runner_lane.rb', line 13

def self.authors
  ["Сергей Веселовский"]
end

.available_optionsObject



26
27
28
29
30
31
32
33
34
# File 'lib/fastlane/plugin/gs_project_flow_ios/actions/gs_execute_external_runner_lane.rb', line 26

def self.available_options
  [
      # FastlaneCore::ConfigItem.new(key: :your_option,
      #                         env_name: "GS_PROJECT_FLOW_IOS_YOUR_OPTION",
      #                      description: "A description of your option",
      #                         optional: false,
      #                             type: String)
  ]
end

.descriptionObject



9
10
11
# File 'lib/fastlane/plugin/gs_project_flow_ios/actions/gs_execute_external_runner_lane.rb', line 9

def self.description
  "Plugin contains project flow code for code sharing between projects"
end

.detailsObject



21
22
23
24
# File 'lib/fastlane/plugin/gs_project_flow_ios/actions/gs_execute_external_runner_lane.rb', line 21

def self.details
  # Optional:
  "Plugin contains project flow code for code sharing between GradoService projects"
end

.is_supported?(platform) ⇒ Boolean

Returns:

  • (Boolean)


36
37
38
39
40
41
42
# File 'lib/fastlane/plugin/gs_project_flow_ios/actions/gs_execute_external_runner_lane.rb', line 36

def self.is_supported?(platform)
  # Adjust this if your plugin only works for a particular platform (iOS vs. Android, for example)
  # See: https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Platforms.md
  #
  # [:ios, :mac, :android].include?(platform)
  true
end

.return_valueObject



17
18
19
# File 'lib/fastlane/plugin/gs_project_flow_ios/actions/gs_execute_external_runner_lane.rb', line 17

def self.return_value
  # If your method provides a return value, you can describe here what it does
end

.run(params) ⇒ Object



4
5
6
7
# File 'lib/fastlane/plugin/gs_project_flow_ios/actions/gs_execute_external_runner_lane.rb', line 4

def self.run(params)
  require 'fastlane/plugin/gs_deliver'
  Actions::GsStartExternalTestingAction.run(FastlaneCore::Configuration.create(GsStartExternalTestingAction.available_options,{app_identifier:ENV["BUNDLE_ID"]}))
end