class Fastlane::Actions::ImportAction

Public Class Methods

authors() click to toggle source
# File fastlane/lib/fastlane/actions/import.rb, line 30
def self.authors
  ["KrauseFx"]
end
available_options() click to toggle source
# File fastlane/lib/fastlane/actions/import.rb, line 23
def self.available_options
end
category() click to toggle source
# File fastlane/lib/fastlane/actions/import.rb, line 44
def self.category
  :misc
end
description() click to toggle source

@!group Documentation

# File fastlane/lib/fastlane/actions/import.rb, line 12
def self.description
  "Import another Fastfile to use its lanes"
end
details() click to toggle source
# File fastlane/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
example_code() click to toggle source
# File fastlane/lib/fastlane/actions/import.rb, line 38
def self.example_code
  [
    'import("./path/to/other/Fastfile")'
  ]
end
is_supported?(platform) click to toggle source
# File fastlane/lib/fastlane/actions/import.rb, line 34
def self.is_supported?(platform)
  true
end
output() click to toggle source
# File fastlane/lib/fastlane/actions/import.rb, line 26
def self.output
  []
end
run(params) click to toggle source
# File fastlane/lib/fastlane/actions/import.rb, line 4
def self.run(params)
  # this is implemented in the fast_file.rb
end