class TimerCli::Command

Public Class Methods

start() click to toggle source
# File lib/timer_cli/command.rb, line 4
def start
  params = Parameters.new(ARGV)

  timer = Timer.new(params.sec)
  timer.run
end