# File lib/timetrap/helpers.rb, line 66 def format_date time return '' unless time.respond_to?(:strftime) time.strftime('%a %b %d, %Y') end
# File lib/timetrap/helpers.rb, line 71 def format_date_if_new time, last_time return '' unless time.respond_to?(:strftime) same_day?(time, last_time) ? '' : format_date(time) end
# File lib/timetrap/helpers.rb, line 80 def format_seconds secs negative = secs < 0 secs = secs.abs formatted = "%2s:%02d:%02d" % [secs/3600, (secs%3600)/60, secs%60] formatted = "-#{formatted}" if negative formatted end
# File lib/timetrap/helpers.rb, line 61 def format_time time return '' unless time.respond_to?(:strftime) time.strftime('%H:%M:%S') end
# File lib/timetrap/helpers.rb, line 89 def format_total entries secs = entries.inject(0) do |m, e| m += e.duration end "%2s:%02d:%02d" % [secs/3600, (secs%3600)/60, secs%60] end
# File lib/timetrap/helpers.rb, line 76 def same_day? time, other_time format_date(time) == format_date(other_time) end
# File lib/timetrap/helpers.rb, line 41 def selected_entries ee = if (sheet = sheet_name_from_string(unused_args)) == 'all' Timetrap::Entry.filter('sheet not like ? escape "!"', '!_%') elsif (sheet = sheet_name_from_string(unused_args)) == 'full' Timetrap::Entry.filter() elsif sheet =~ /.+/ Timetrap::Entry.filter('sheet = ?', sheet) else Timetrap::Entry.filter('sheet = ?', Timer.current_sheet) end ee = ee.filter('start >= ?', Date.parse(Timer.process_time(args['-s']).to_s)) if args['-s'] ee = ee.filter('start <= ?', Date.parse(Timer.process_time(args['-e']).to_s) + 1) if args['-e'] ee = ee.order(:start) if args['-g'] re = Regexp::new(args['-g']) ee = ee.find_all{|e| re.match(e.note)} end ee end
# File lib/timetrap/helpers.rb, line 96 def sheet_name_from_string string string = string.strip case string when /^\W*all\W*$/ then "all" when /^\W*full\W*$/ then "full" when /^$/ then Timer.current_sheet else entry = DB[:entries].filter(Sequel.like(:sheet,string)).first || DB[:entries].filter(Sequel.like(:sheet, "#{string}%")).first if entry entry[:sheet] else raise "Can't find sheet matching #{string.inspect}" end end end
Generated with the Darkfish Rdoc Generator 2.