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&#39;ve found by changing these lines:
<br><br>&nbsp;&nbsp;&nbsp; # UTC time gets a Z suffix<br>&nbsp;&nbsp;&nbsp; if utc<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; s &lt;&lt; &quot;Z&quot;<br>&nbsp;&nbsp;&nbsp; end<br><br>to <br><br>&nbsp; s &lt;&lt; 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>