Method: Bait::CLI.method_missing

Defined in:
lib/bait/cli.rb

.method_missing(method) ⇒ Object



98
99
100
101
102
103
# File 'lib/bait/cli.rb', line 98

def self.method_missing method
  unless method.to_sym == :help
    puts "Command not found: #{method}"
  end
  puts USAGE
end