Method: Chore::CLI#run!

Defined in:
lib/chore/cli.rb

#run!(args = ARGV) ⇒ Object

Start up the consuming side of the application. This calls Chore::Manager#start.



50
51
52
53
54
# File 'lib/chore/cli.rb', line 50

def run!(args=ARGV)
  parse(args)
  @manager = Chore::Manager.new
  @manager.start
end