Class: Fastlane::Actions::DebugAction
Constant Summary
Fastlane::Action::AVAILABLE_CATEGORIES, Fastlane::Action::RETURN_TYPES
Class Method Summary
collapse
action_name, authors, available_options, deprecated_notes, details, 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
.author ⇒ Object
27
28
29
|
# File 'fastlane/lib/fastlane/actions/debug.rb', line 27
def self.author
"KrauseFx"
end
|
.category ⇒ Object
23
24
25
|
# File 'fastlane/lib/fastlane/actions/debug.rb', line 23
def self.category
:misc
end
|
.description ⇒ Object
9
10
11
|
# File 'fastlane/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 'fastlane/lib/fastlane/actions/debug.rb', line 17
def self.example_code
[
'debug'
]
end
|
.is_supported?(platform) ⇒ Boolean
13
14
15
|
# File 'fastlane/lib/fastlane/actions/debug.rb', line 13
def self.is_supported?(platform)
true
end
|
.run(params) ⇒ Object
4
5
6
7
|
# File 'fastlane/lib/fastlane/actions/debug.rb', line 4
def self.run(params)
puts("Lane Context".green)
puts(Actions.lane_context)
end
|