Class: Fastlane::Actions::DebugAction

Inherits:
Fastlane::Action show all
Defined in:
fastlane/lib/fastlane/actions/debug.rb

Constant Summary

Constants inherited from Fastlane::Action

Fastlane::Action::AVAILABLE_CATEGORIES, Fastlane::Action::RETURN_TYPES

Class Method Summary collapse

Methods inherited from Fastlane::Action

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

.authorObject



27
28
29
# File 'fastlane/lib/fastlane/actions/debug.rb', line 27

def self.author
  "KrauseFx"
end

.categoryObject



23
24
25
# File 'fastlane/lib/fastlane/actions/debug.rb', line 23

def self.category
  :misc
end

.descriptionObject



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_codeObject



17
18
19
20
21
# File 'fastlane/lib/fastlane/actions/debug.rb', line 17

def self.example_code
  [
    'debug'
  ]
end

.is_supported?(platform) ⇒ Boolean

Returns:



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