class Adhearsion::CLI::UnknownGeneratorError

Public Class Methods

new(gentype) click to toggle source
Calls superclass method
# File lib/adhearsion/cli_commands/thor_errors.rb, line 18
def initialize(gentype)
  puts "Please specify generator to use (#{Adhearsion::Generators.mappings.keys.join(", ")})"
  super "Unknown command: #{gentype}"
end