Sha256: 76924f6abef0e60d68535d53f698cbdeb6def2450e7f30edd115a0b009e0bed8

Contents?: true

Size: 1.19 KB

Versions: 4

Compression:

Stored size: 1.19 KB

Contents

module Timetrap
  module Helpers
    def format_time time
      return '' unless time.respond_to?(:strftime)
      time.strftime('%H:%M:%S')
    end

    def format_date time
      return '' unless time.respond_to?(:strftime)
      time.strftime('%a %b %d, %Y')
    end

    def format_date_if_new time, last_time
      return '' unless time.respond_to?(:strftime)
      same_day?(time, last_time) ? '' : format_date(time)
    end

    def same_day? time, other_time
      format_date(time) == format_date(other_time)
    end

    def format_duration stime, etime
      return '' unless stime and etime
      secs = etime.to_i - stime.to_i
      format_seconds secs
    end

    def format_seconds secs
      "%2s:%02d:%02d" % [secs/3600, (secs%3600)/60, secs%60]
    end

    def format_total entries
      secs = entries.inject(0){|m, e|e_end = e.end || Time.now; m += e_end.to_i - e.start.to_i if e_end && e.start;m}
      "%2s:%02d:%02d" % [secs/3600, (secs%3600)/60, secs%60]
    end

    def sheet_name_from_string string
      return "all" if string =~ /^\W*all\W*$/
      return "" unless string =~ /.+/
      DB[:entries].filter(:sheet.like("#{string}%")).first[:sheet]
    rescue
      ""
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
samg-timetrap-0.1.1 lib/timetrap/helpers.rb
samg-timetrap-0.1.2 lib/timetrap/helpers.rb
samg-timetrap-1.0.0 lib/timetrap/helpers.rb
samg-timetrap-1.0.1 lib/timetrap/helpers.rb