Sha256: 9b254961971903b4d09c0a878662f452b779de4153a18c8dbfd3d121e57ee9b9

Contents?: true

Size: 529 Bytes

Versions: 11

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

11 entries across 11 versions & 1 rubygems

Version Path
pantograph-0.1.14 pantograph/lib/pantograph/actions/debug.rb
pantograph-0.1.13 pantograph/lib/pantograph/actions/debug.rb
pantograph-0.1.12 pantograph/lib/pantograph/actions/debug.rb
pantograph-0.1.10 pantograph/lib/pantograph/actions/debug.rb
pantograph-0.1.8 pantograph/lib/pantograph/actions/debug.rb
pantograph-0.1.7 pantograph/lib/pantograph/actions/debug.rb
pantograph-0.1.6 pantograph/lib/pantograph/actions/debug.rb
pantograph-0.1.4 pantograph/lib/pantograph/actions/debug.rb
pantograph-0.1.3 pantograph/lib/pantograph/actions/debug.rb
pantograph-0.1.1 pantograph/lib/pantograph/actions/debug.rb
pantograph-0.1.0 pantograph/lib/pantograph/actions/debug.rb