I don't recall anyone working on this. > my $ics = new DateTime::ICS; > > $ics->parse( file => 'holidays.ics' );
If you really want to parse files please make it so you can pass in a file-handle and not a filename. Also it'd be a lot more useful if you could pass in a string or array as well. > $ics->export(); # dump it out as an ics file Should require a file-handle to write to. How about being able to get a string or array back? -J --
