Class: Fastlane::Actions::LaneContextAction
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, return_value, sample_return_value, shell_out_should_use_bundle_exec?
Class Method Details
.authors ⇒ Object
35
36
37
|
# File 'fastlane/lib/fastlane/actions/lane_context.rb', line 35
def self.authors
["KrauseFx"]
end
|
.available_options ⇒ Object
23
24
25
|
# File 'fastlane/lib/fastlane/actions/lane_context.rb', line 23
def self.available_options
[]
end
|
.category ⇒ Object
55
56
57
|
# File 'fastlane/lib/fastlane/actions/lane_context.rb', line 55
def self.category
:misc
end
|
.description ⇒ Object
12
13
14
|
# File 'fastlane/lib/fastlane/actions/lane_context.rb', line 12
def self.description
"Access lane context values"
end
|
.details ⇒ Object
16
17
18
19
20
21
|
# File 'fastlane/lib/fastlane/actions/lane_context.rb', line 16
def self.details
[
"Access the fastlane lane context values.",
"More information about how the lane context works: [https://docs.fastlane.tools/advanced/#lane-context](https://docs.fastlane.tools/advanced/#lane-context)."
].join("\n")
end
|
.example_code ⇒ Object
48
49
50
51
52
53
|
# File 'fastlane/lib/fastlane/actions/lane_context.rb', line 48
def self.example_code
[
'lane_context[SharedValues::BUILD_NUMBER]',
'lane_context[SharedValues::IPA_OUTPUT_PATH]'
]
end
|
.is_supported?(platform) ⇒ Boolean
39
40
41
|
# File 'fastlane/lib/fastlane/actions/lane_context.rb', line 39
def self.is_supported?(platform)
true
end
|
.output ⇒ Object
27
28
29
|
# File 'fastlane/lib/fastlane/actions/lane_context.rb', line 27
def self.output
[]
end
|
.return_type ⇒ Object
31
32
33
|
# File 'fastlane/lib/fastlane/actions/lane_context.rb', line 31
def self.return_type
:hash
end
|
.run(params) ⇒ Object
4
5
6
|
# File 'fastlane/lib/fastlane/actions/lane_context.rb', line 4
def self.run(params)
Actions.lane_context
end
|
.step_text ⇒ Object
We don’t want to show this as step
44
45
46
|
# File 'fastlane/lib/fastlane/actions/lane_context.rb', line 44
def self.step_text
nil
end
|