Sha256: 594d0f7e5ebfbafd2a4fb7348691eee5aaccf62446a800dbccbe53201cae258f
Contents?: true
Size: 541 Bytes
Versions: 1
Compression:
Stored size: 541 Bytes
Contents
module RiCal class PropertyValue class RecurrenceRule < PropertyValue class OccurrenceIncrementer # :nodoc: class SecondlyIncrementer < FrequencyIncrementer #:nodoc: def self.for_rrule(rrule) if rrule.freq == "SECONDLY" new(rrule, nil) else nil end end def advance_what :seconds end def end_of_occurrence(date_time) date_time end end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
friflaj_ri_cal-0.9.0 | lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/secondly_incrementer.rb |