Sha256: d450662a1728f2483b426651fa504c958840f224dd54f10e04e22c22267e14ec

Contents?: true

Size: 777 Bytes

Versions: 1

Compression:

Stored size: 777 Bytes

Contents

require File.join(File.dirname(__FILE__), %w[.. properties alarm.rb])

module RiCal

  class Component
    #- ©2009 Rick DeNatale
    #- All rights reserved. Refer to the file README.txt for the license
    #
    # An Alarm component groups properties defining a reminder or alarm associated with an event or to-do
    # TODO: The Alarm component has complex cardinality restrictions depending on the value of the action property
    # i.e. audio, display, email, and proc alarms, this is currently not checked or enforced
    #
    # to see the property accessing methods for this class see the RiCal::Properties::Alarm module
    class Alarm < Component
      include RiCal::Properties::Alarm

      def self.entity_name #:nodoc:
        "VALARM"
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rubyredrick-ri_cal-0.0.2 lib/ri_cal/component/alarm.rb