class RiCal::PropertyValue::Period

RiCal::PropertyValue::CalAddress represents an icalendar Period property value
which is defined in 
rfc 2445 section 4.3.9 p 39

Known bugs.  This doesn't properly work when dtstart, dtend or duration are changed independently

Attributes

dtend[RW]

The DATE-TIME on which the period ends

dtstart[RW]

The DATE-TIME on which the period starts

duration[RW]

The DURATION of the period

Public Instance Methods

ruby_value() click to toggle source
# File lib/ri_cal/property_value/period.rb, line 32
def ruby_value
  self
end
to_ri_cal_period_value() click to toggle source

return the receiver

# File lib/ri_cal/property_value/period.rb, line 72
def to_ri_cal_period_value
  self
end