# File lib/cabin/timer.rb, line 15
  def stop
    duration = Time.now - @start
    @callback.call(duration) if @callback
    return duration
  end