I believe there may be an issue with the DateTime output in the conversions.rb file.<br><br>As it currently is, no timezone data is output in the string ie:<br><br>DTSTART:20061218T180000<br><br>I've found by changing these lines:
<br><br> # UTC time gets a Z suffix<br> if utc<br> s << "Z"<br> end<br><br>to <br><br> s << self.zone<br><br>I get a line like this:<br><br>DTSTART:20061218T180000Z<br><br>Which is then properly handled by my ICS consumer (Google Calendar and ICal).
<br><br>Does this seem like a valid fix or am I missing some other timezone support?<br><br>Thanks,<br>Greg Martin<br>