We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
IceCube::Schedule.from_ical
It seems highly likely that this is a known issue, but I can't seem to find a reference to it:
IceCube::Schedule
For example, the following does not work:
schedule = IceCube::Schedule.new(2.days.from_now) do |s| s.add_recurrence_time 3.days.from_now end #=> <IceCube::Schedule:0x0000000745f8d8 @start_time=Thu, 10 Aug 2017 13:41:33 UTC +00:00, @all_recurrence_rules=[#<IceCube::SingleOccurrenceRule:0x0000000745f270 @time=Fri, 11 Aug 2017 13:41:33 UTC +00:00>], @all_exception_rules=[]> IceCube::Schedule.from_ical schedule.to_ical #=> #<IceCube::Schedule:0x00000007465d50 @start_time=2017-08-10 13:41:33 UTC, @all_recurrence_rules=[], @all_exception_rules=[]>
Reading the schedule.to_ical using IceCubeSchedule.from_ical does not return the correct IceCube::Schedule object.
schedule.to_ical
IceCubeSchedule.from_ical
Thanks--awesome gem!
Using gem version 0.16.2 with ruby 2.4.1
The text was updated successfully, but these errors were encountered:
Thanks! Fix coming in #408 I may end up pulling that fix out of that PR as well
Sorry, something went wrong.
@seejohnrun Dang, you're on top of things! awesome!!!
Parse RDATE lines in iCal parser
2d6eb82
Closes #409
No branches or pull requests
It seems highly likely that this is a known issue, but I can't seem to find a reference to it:
IceCube::Schedule
can't seem to parse iCalendar strings that include specific recurrence times.For example, the following does not work:
Reading the
schedule.to_ical
usingIceCubeSchedule.from_ical
does not return the correctIceCube::Schedule
object.Thanks--awesome gem!
Using gem version 0.16.2 with ruby 2.4.1
The text was updated successfully, but these errors were encountered: