Class: Fastlane::Actions::LaneContextAction
Constant Summary
Fastlane::Action::AVAILABLE_CATEGORIES
Class Method Summary
collapse
action_name, author, details, lane_context, method_missing, other_action, return_value, sample_return_value, sh
Class Method Details
.authors ⇒ Object
24
25
26
|
# File 'lib/fastlane/actions/lane_context.rb', line 24
def self.authors
["KrauseFx"]
end
|
.available_options ⇒ Object
16
17
18
|
# File 'lib/fastlane/actions/lane_context.rb', line 16
def self.available_options
[]
end
|
.category ⇒ Object
41
42
43
|
# File 'lib/fastlane/actions/lane_context.rb', line 41
def self.category
:misc
end
|
.description ⇒ Object
12
13
14
|
# File 'lib/fastlane/actions/lane_context.rb', line 12
def self.description
"An alias to `Actions.lane_context`"
end
|
.example_code ⇒ Object
37
38
39
|
# File 'lib/fastlane/actions/lane_context.rb', line 37
def self.example_code
[]
end
|
.is_supported?(platform) ⇒ Boolean
28
29
30
|
# File 'lib/fastlane/actions/lane_context.rb', line 28
def self.is_supported?(platform)
true
end
|
.output ⇒ Object
20
21
22
|
# File 'lib/fastlane/actions/lane_context.rb', line 20
def self.output
[]
end
|
.run(params) ⇒ Object
4
5
6
|
# File '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
33
34
35
|
# File 'lib/fastlane/actions/lane_context.rb', line 33
def self.step_text
nil
end
|