# File lib/timetrap/formatters/ical.rb, line 24 def initialize entries entries.each do |e| next unless e.end calendar.event do # hack around an issue in ical gem in ruby 1.9 unless respond_to? :<=> def <=> other dtstart > other.dtstart ? 1 : 0 end end dtstart DateTime.parse(e.start.to_s) dtend DateTime.parse(e.end.to_s) summary e.note description e.note end end calendar.publish end
Generated with the Darkfish Rdoc Generator 2.