Sha256: 1dc10e16378ac1f0216efbf2f685ae804babc23e4276d69fc5e2d80efb45e16d
Contents?: true
Size: 767 Bytes
Versions: 1
Compression:
Stored size: 767 Bytes
Contents
require File.join(File.dirname(__FILE__), %w[.. properties journal.rb]) module RiCal class Component #- ©2009 Rick DeNatale #- All rights reserved. Refer to the file README.txt for the license # # A Journal (VJOURNAL) calendar component groups properties describing a journal entry. # Journals may have multiple occurrences # to see the property accessing methods for this class see the RiCal::Properties::Journal module # to see the methods for enumerating occurrences of recurring journals see the RiCal::OccurrenceEnumerator module class Journal < Component include RiCal::Properties::Journal include RiCal::OccurrenceEnumerator def self.entity_name #:nodoc: "VJOURNAL" 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/journal.rb |