Sha256: 5e8eea389c86f0b0251d6f447483184e301382e10b9a4e5827c40354615c1159

Contents?: true

Size: 1.23 KB

Versions: 5

Compression:

Stored size: 1.23 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
    ical_property :uid
    
    # 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_multiline_property :attendee, :attendee, :attendees
    ical_multiline_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

5 entries across 5 versions & 1 rubygems

Version Path
icalendar-1.3.0 lib/icalendar/component/alarm.rb
icalendar-1.2.4 lib/icalendar/component/alarm.rb
icalendar-1.2.3 lib/icalendar/component/alarm.rb
icalendar-1.2.2 lib/icalendar/component/alarm.rb
icalendar-1.2.1 lib/icalendar/component/alarm.rb