Method: Appfront::Command::Help.method_missing

Defined in:
lib/appfront/command/help.rb

.method_missing(m, *args, &block) ⇒ Object



62
63
64
65
66
67
# File 'lib/appfront/command/help.rb', line 62

def self.method_missing(m, *args, &block)
  unless self.respond_to? m
    puts "Invalid command: #{m}"
    exit 1
  end
end