Class: Fastlane::Actions::DebugAction
Constant Summary
Fastlane::Action::AVAILABLE_CATEGORIES
Class Method Summary
collapse
action_name, authors, available_options, details, lane_context, method_missing, other_action, output, return_value, sample_return_value, sh, step_text
Class Method Details
.author ⇒ Object
27
28
29
|
# File 'lib/fastlane/actions/debug.rb', line 27
def self.author
"KrauseFx"
end
|
.category ⇒ Object
23
24
25
|
# File 'lib/fastlane/actions/debug.rb', line 23
def self.category
:misc
end
|
.description ⇒ Object
9
10
11
|
# File 'lib/fastlane/actions/debug.rb', line 9
def self.description
"Print out an overview of the lane context values"
end
|
.example_code ⇒ Object
17
18
19
20
21
|
# File 'lib/fastlane/actions/debug.rb', line 17
def self.example_code
[
'debug'
]
end
|
.is_supported?(platform) ⇒ Boolean
13
14
15
|
# File 'lib/fastlane/actions/debug.rb', line 13
def self.is_supported?(platform)
true
end
|
.run(params) ⇒ Object
4
5
6
7
|
# File 'lib/fastlane/actions/debug.rb', line 4
def self.run(params)
puts "Lane Context".green
puts Actions.lane_context
end
|