class Fastlane::Actions::ImportAction
Public Class Methods
Source
# File fastlane/lib/fastlane/actions/import.rb, line 23 def self.available_options end
Source
# File fastlane/lib/fastlane/actions/import.rb, line 44 def self.category :misc end
Source
# File fastlane/lib/fastlane/actions/import.rb, line 12 def self.description "Import another Fastfile to use its lanes" end
@!group Documentation
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
Source
# File fastlane/lib/fastlane/actions/import.rb, line 38 def self.example_code [ 'import("./path/to/other/Fastfile")' ] end
Source
# File fastlane/lib/fastlane/actions/import.rb, line 34 def self.is_supported?(platform) true end
Source
# File fastlane/lib/fastlane/actions/import.rb, line 4 def self.run(params) # this is implemented in the fast_file.rb end