class Fastlane::Actions::ImportAction

def self.authors

def self.authors
  ["KrauseFx"]
end

def self.available_options

def self.available_options
end

def self.description

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

def self.details

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

def self.is_supported?(platform)

def self.is_supported?(platform)
  true
end

def self.output

def self.output
  []
end

def self.run(params)

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