class Pantograph::Actions::DebugAction

Public Class Methods

author() click to toggle source
# File pantograph/lib/pantograph/actions/debug.rb, line 27
def self.author
  'KrauseFx'
end
category() click to toggle source
# File pantograph/lib/pantograph/actions/debug.rb, line 23
def self.category
  :misc
end
description() click to toggle source
# File pantograph/lib/pantograph/actions/debug.rb, line 9
def self.description
  'Print out an overview of the lane context values'
end
example_code() click to toggle source
# File pantograph/lib/pantograph/actions/debug.rb, line 17
def self.example_code
  [
    'debug'
  ]
end
is_supported?(platform) click to toggle source
# File pantograph/lib/pantograph/actions/debug.rb, line 13
def self.is_supported?(platform)
  true
end
run(params) click to toggle source
# File pantograph/lib/pantograph/actions/debug.rb, line 4
def self.run(params)
  puts("Lane Context".green)
  puts(Actions.lane_context)
end