class Commandoes::NullHandler

Attributes

command[R]

Public Class Methods

new(command) click to toggle source
# File lib/commandoes/registry.rb, line 38
def initialize(command)
  @command = command
end

Public Instance Methods

call() click to toggle source
# File lib/commandoes/registry.rb, line 42
def call
  puts "-" * 65
  puts " NO HANDLER REGISTERED FOR #{command.class.upcase}"
  puts "-" * 65
  puts command.inspect
end