Sha256: b8fcb87cd04b70b5778beb262873b591a643af166b4862f72267031a36f4e3dd
Contents?: true
Size: 1.2 KB
Versions: 2
Compression:
Stored size: 1.2 KB
Contents
=begin Copyright (C) 2005 Jeff Rose This library is free software; you can redistribute it and/or modify it under the same terms as the ruby language itself, see the file COPYING for details. =end module Icalendar # An Alarm calendar component is a grouping of component # properties that is a reminder or alarm for an event or a # to-do. For example, it may be used to define a reminder for a # pending Event or an overdue Todo. class Alarm < Component # Single properties ical_property :action ical_property :description ical_property :trigger ical_property :summary # Single but must appear together ical_property :duration ical_property :repeat # Single and only occurring once ical_property :created ical_property :last_modified ical_property :timestamp ical_property :sequence # Multi properties ical_multi_property :attendee, :attendee, :attendees ical_multi_property :attach, :attachment, :attachments def initialize() super("VALARM") # Almost everyone just wants to display so I make it the # default so it works for most people right away... action "DISPLAY" end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
icalendar-0.98 | lib/icalendar/component/alarm.rb |
icalendar-0.97 | lib/icalendar/component/alarm.rb |