Displaying 1 result from an estimated 1 matches for "20080115t000000".
Did you mean:
20080114t000000
2008 Feb 27
2
All Day Events
...cal.event do
dtstart DateTime.parse("#{startDate.year()}-#{startDate.month()}-#{startDate.day()}")
dtend DateTime.parse("#{startDate.year()}-#{startDate.month()}-#{startDate.day()+1}")
end
The ICAL entry from this looks like...
DTSTART: 20080114T000000
DTEND: 20080115T000000
I also tried it in the format from the README
cal.event do
dtstart Date.nnew(2008, 01, 14)
dtend Date.new(2008, 01, 15)
end
...which produced...
DTSTART: 20080114
DTEND: 20080115
When I create an all day event in my calendar system and export it to an ICS file it looks like thi...