Class: Fastlane::Actions::ImportAction

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

Documentation collapse

Class Method Summary collapse

Methods inherited from Fastlane::Action

action_name, author, method_missing, other_action, return_value, sh, step_text

Class Method Details

.authorsObject



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

def self.authors
  ["KrauseFx"]
end

.available_optionsObject



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

def self.available_options
end

.descriptionObject



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

def self.description
  "Import another Fastfile to use its lanes"
end

.detailsObject



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

def self.details
  [
    "This is useful if you have shared lanes across multiple apps and you want to store a Fastfile",
    "in a separate folder. The path must be relative to the Fastfile this is called from."
  ].join("\n")
end

.is_supported?(platform) ⇒ Boolean

Returns:

  • (Boolean)


34
35
36
# File 'lib/fastlane/actions/import.rb', line 34

def self.is_supported?(platform)
  true
end

.outputObject



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

def self.output
  []
end

.run(params) ⇒ Object



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

def self.run(params)
  # this is implemented in the fast_file.rb
end