Class: Fastlane::Actions::DebugAction

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

Class Method Summary collapse

Methods inherited from Fastlane::Action

action_name, authors, available_options, details, output, return_value, sh, step_text

Class Method Details

.authorObject



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

def self.author
  "KrauseFx"
end

.descriptionObject



9
10
11
# File 'lib/fastlane/actions/debug.rb', line 9

def self.description
  "Print out an overview of the lane context values"
end

.is_supported?(platform) ⇒ Boolean

Returns:

  • (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