Class: Pantograph::Actions::ImportFromGitAction
Constant Summary
Pantograph::Action::AVAILABLE_CATEGORIES, Pantograph::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
56
57
58
|
# File 'pantograph/lib/pantograph/actions/import_from_git.rb', line 56
def self.authors
['fabiomassimo', 'KrauseFx', 'Liquidsoul', 'johnknapprs']
end
|
.available_options ⇒ Object
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
# File 'pantograph/lib/pantograph/actions/import_from_git.rb', line 20
def self.available_options
[
PantographCore::ConfigItem.new(
key: :url,
description: 'The URL of the repository to import the Pantfile from',
default_value: nil,
optional: false
),
PantographCore::ConfigItem.new(
key: :branch,
description: 'The branch or tag to check-out on the repository',
default_value: 'master',
optional: true
),
PantographCore::ConfigItem.new(
key: :path,
description: 'The path of the Pantfile in the repository',
default_value: 'pantograph/Pantfile',
optional: true
),
PantographCore::ConfigItem.new(
key: :dependencies,
description: 'Array of additional Pantfiles in the repository',
default_value: [],
optional: true
),
PantographCore::ConfigItem.new(
key: :version,
description: 'The version to checkout on the repository. Optimistic match operator or multiple conditions can be used to select the version within constraints',
default_value: nil,
is_string: false,
optional: true
)
]
end
|
.category ⇒ Object
89
90
91
|
# File 'pantograph/lib/pantograph/actions/import_from_git.rb', line 89
def self.category
:misc
end
|
.description ⇒ Object
12
13
14
|
# File 'pantograph/lib/pantograph/actions/import_from_git.rb', line 12
def self.description
'Import another Pantfile from a remote git repository to use its lanes'
end
|
.details ⇒ Object
16
17
18
|
# File 'pantograph/lib/pantograph/actions/import_from_git.rb', line 16
def self.details
'This is useful when sharing the same lanes across multiple projects'
end
|
.example_code ⇒ Object
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
# File 'pantograph/lib/pantograph/actions/import_from_git.rb', line 64
def self.example_code
[
' # Simple import on master branch
import_from_git(
url: "[email protected]:urbanquakers/pantograph.git"
)
',
' # Import a Pantfile with an Optimistic version match operator
import_from_git(
url: "[email protected]:urbanquakers/pantograph.git",
branch: "master",
path: "pantograph/Pantfile",
version: "~> 1.0.0"
)
',
' # Import a Pantfile with multiple version conditions
import_from_git(
url: "[email protected]:urbanquakers/pantograph.git", # The URL of the repository to import the Pantfile from.
branch: "development", # The branch to checkout on the repository
version: [">= 1.1.0", "< 2.0.0"]
)
'
]
end
|
.is_supported?(platform) ⇒ Boolean
60
61
62
|
# File 'pantograph/lib/pantograph/actions/import_from_git.rb', line 60
def self.is_supported?(platform)
true
end
|
.run(params) ⇒ Object
4
5
6
|
# File 'pantograph/lib/pantograph/actions/import_from_git.rb', line 4
def self.run(params)
end
|