class Noir::Command

Public Class Methods

execute(*args) click to toggle source
# File lib/noir/command.rb, line 3
def execute *args
  # if arguments missing. call help.
  Noir::Command::Help.execute if args.size.zero?
  check_command_not_found(*args)
end