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, sh, step_text

Class Method Details

.authorsObject



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

def self.authors
  ["KrauseFx"]
end

.available_optionsObject



23
24
25
# 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)


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

def self.is_supported?(platform)
  true
end

.outputObject



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

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