Class: Cosm::CLI

Inherits:
Object
  • Object
show all
Defined in:
lib/cosm/cli.rb

Class Method Summary collapse

Class Method Details

.start(*args) ⇒ Object



6
7
8
9
10
# File 'lib/cosm/cli.rb', line 6

def self.start(*args)
  command = args.shift.strip rescue "help"
  Cosm::Command.load
  Cosm::Command.run(command, args)
end