class GetToWork::CLI

Public Instance Methods

bootstrap() click to toggle source
# File lib/get_to_work/cli.rb, line 4
def bootstrap
  GetToWork::Command::Bootstrap.run
end
last_story() click to toggle source
# File lib/get_to_work/cli.rb, line 19
def last_story
  GetToWork::Command::LastStory.run
end
start(pt_id = nil) click to toggle source
# File lib/get_to_work/cli.rb, line 9
def start(pt_id = nil)
  GetToWork::Command::Start.run(pt_id: pt_id)
end
stop() click to toggle source
# File lib/get_to_work/cli.rb, line 14
def stop
  GetToWork::Command::Stop.run
end