Cool, thanks for the patch. I''ve actually be putting in some time this
weekend so I''ll apply it as well as a few others to get a release out
in
the next day or two. You want just "Mark" in the changelog?
Mark Guzman wrote:> Hi,
> I''m not sure if this has been handled in the repository, but the
time
> conversion in conversions.rb is missing the definition for s. This
> causes an exception when you attempt to write out a calendar that used
> times for dtstart & dtend. I''ve fixed my local copy, the patch
is
> attached (just adds: s = "").
> --mark
>
>
> ------------------------------------------------------------------------
>
> --- conversions.rb-orig 2006-03-18 15:35:27.354987200 -0500
> +++ conversions.rb 2006-03-18 15:27:38.460750400 -0500
> @@ -107,6 +107,7 @@
>
> class Time
> def to_ical(utc = false)
> + s = ""
> # Double digit hour
> s << "0" unless self.hour > 9
> s << self.hour.to_s
>
> ------------------------------------------------------------------------
>
> _______________________________________________
> icalendar-devel mailing list
> icalendar-devel at rubyforge.org
> http://rubyforge.org/mailman/listinfo/icalendar-devel