Sha256: 5c593a66c6e7a1fb1e5d80fa44f73b9d2003d563a488e7ff5358d60018698f8e

Contents?: true

Size: 529 Bytes

Versions: 7

Compression:

Stored size: 529 Bytes

Contents

module Pantograph
  module Actions
    class DebugAction < Action
      def self.run(params)
        puts("Lane Context".green)
        puts(Actions.lane_context)
      end

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

      def self.is_supported?(platform)
        true
      end

      def self.example_code
        [
          'debug'
        ]
      end

      def self.category
        :misc
      end

      def self.author
        'KrauseFx'
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
pantograph-0.1.22 pantograph/lib/pantograph/actions/debug.rb
pantograph-0.1.21 pantograph/lib/pantograph/actions/debug.rb
pantograph-0.1.20 pantograph/lib/pantograph/actions/debug.rb
pantograph-0.1.19 pantograph/lib/pantograph/actions/debug.rb
pantograph-0.1.17 pantograph/lib/pantograph/actions/debug.rb
pantograph-0.1.16 pantograph/lib/pantograph/actions/debug.rb
pantograph-0.1.15 pantograph/lib/pantograph/actions/debug.rb