class Abricot::CLI

Public Instance Methods

exec(*args) click to toggle source
# File lib/abricot/cli.rb, line 17
def exec(*args)
  require 'abricot/master'
  Abricot::Master.new(options).exec(args, options)
end
listen() click to toggle source
# File lib/abricot/cli.rb, line 6
def listen
  require 'abricot/worker'
  Abricot::Worker.new(options).listen
end