Class: Fastlane::Actions::ImportFromGitAction
Constant Summary
Fastlane::Action::AVAILABLE_CATEGORIES, Fastlane::Action::RETURN_TYPES
Class Method Summary
collapse
action_name, author, deprecated_notes, lane_context, method_missing, other_action, output, return_type, return_value, sample_return_value, shell_out_should_use_bundle_exec?, step_text
Class Method Details
.authors ⇒ Object
43
44
45
|
# File 'fastlane/lib/fastlane/actions/import_from_git.rb', line 43
def self.authors
["fabiomassimo", "KrauseFx", "Liquidsoul"]
end
|
.available_options ⇒ Object
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# File 'fastlane/lib/fastlane/actions/import_from_git.rb', line 23
def self.available_options
[
FastlaneCore::ConfigItem.new(key: :url,
description: "The URL of the repository to import the Fastfile from",
default_value: nil),
FastlaneCore::ConfigItem.new(key: :branch,
description: "The branch or tag to check-out on the repository",
default_value: 'HEAD',
optional: true),
FastlaneCore::ConfigItem.new(key: :path,
description: "The path of the Fastfile in the repository",
default_value: 'fastlane/Fastfile',
optional: true),
FastlaneCore::ConfigItem.new(key: :version,
description: "The version to checkout on the respository. Optimistic match operator or multiple conditions can be used to select the latest version within constraints",
default_value: nil,
optional: true)
]
end
|
.category ⇒ Object
68
69
70
|
# File 'fastlane/lib/fastlane/actions/import_from_git.rb', line 68
def self.category
:misc
end
|
.description ⇒ Object
12
13
14
|
# File 'fastlane/lib/fastlane/actions/import_from_git.rb', line 12
def self.description
"Import another Fastfile from a remote git repository to use its lanes"
end
|
.details ⇒ Object
16
17
18
19
20
21
|
# File 'fastlane/lib/fastlane/actions/import_from_git.rb', line 16
def self.details
[
"This is useful if you have shared lanes across multiple apps and you want to store the Fastfile",
"in a remote git repository."
].join("\n")
end
|
.example_code ⇒ Object
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
# File 'fastlane/lib/fastlane/actions/import_from_git.rb', line 51
def self.example_code
[
'import_from_git(
url: "[email protected]:fastlane/fastlane.git", # The URL of the repository to import the Fastfile from.
branch: "HEAD", # The branch to checkout on the repository
path: "fastlane/Fastfile", # The path of the Fastfile in the repository
version: "~> 1.0.0" # The version to checkout on the repository. Optimistic match operator can be used to select the latest version within constraints.
)',
'import_from_git(
url: "[email protected]:fastlane/fastlane.git", # The URL of the repository to import the Fastfile from.
branch: "HEAD", # The branch to checkout on the repository
path: "fastlane/Fastfile", # The path of the Fastfile in the repository
version: [">= 1.1.0", "< 2.0.0"] # The version to checkout on the repository. Multiple conditions can be used to select the latest version within constraints.
)'
]
end
|
.is_supported?(platform) ⇒ Boolean
47
48
49
|
# File 'fastlane/lib/fastlane/actions/import_from_git.rb', line 47
def self.is_supported?(platform)
true
end
|
.run(params) ⇒ Object
4
5
6
|
# File 'fastlane/lib/fastlane/actions/import_from_git.rb', line 4
def self.run(params)
end
|