class Parade::Commands::Unknown

The Unknown Command is provided as the default for the command lists as a default to ensure that a nil is not returned, allowing a for an object that adheres to the generate method.

Public Instance Methods

description() click to toggle source
# File lib/parade/commands/unknown.rb, line 12
def description
  "Could not find the command specified"
end
generate(options) click to toggle source
# File lib/parade/commands/unknown.rb, line 16
def generate(options)
  puts description
end