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
Following rule
FREQ=MONTHLY;INTERVAL=1;BYSETPOS=1;BYDAY=SU
used with IceCube::Rule.from_ical(...)
IceCube::Rule.from_ical(...)
Results should look like (monthly, every first sunday of the month)
https://jkbrzt.github.io/rrule/#/rfc/RRULE:FREQ=MONTHLY;INTERVAL=1;BYSETPOS=1;BYDAY=SU
With IceCube i get something like (occurrences)
occurrences
[2024-09-01 00:00:00 +0200, 2024-09-08 00:00:00 +0200, 2024-09-15 00:00:00 +0200, 2024-09-22 00:00:00 +0200, 2024-09-29 00:00:00 +0200, 2024-10-06 00:00:00 +0200, 2024-10-13 00:00:00 +0200, ...
weekly repetitions.
Here the to_hash from the schedule
to_hash
{:start_time=>2024-09-01 00:00:00 +0200, :rrules=>[{:validations=>{:day=>[0]}, :rule_type=>"IceCube::MonthlyRule", :interval=>1}], :rtimes=>[], :extimes=>[]}
The text was updated successfully, but these errors were encountered:
Same in combination with YEARLY
YEARLY
FREQ=Yearly;INTERVAL=1;BYSETPOS=1;BYDAY=SU
Sorry, something went wrong.
Well old one, see
We just ran into this as well!
No branches or pull requests
Following rule
used with
IceCube::Rule.from_ical(...)
Results should look like (monthly, every first sunday of the month)
https://jkbrzt.github.io/rrule/#/rfc/RRULE:FREQ=MONTHLY;INTERVAL=1;BYSETPOS=1;BYDAY=SU
With IceCube i get something like (
occurrences
)weekly repetitions.
Here the
to_hash
from the scheduleThe text was updated successfully, but these errors were encountered: