Sha256: 6aa9e785e8ad54f6434f01f911e1611745dd0d04a967f12192aca9a6d581158d

Contents?: true

Size: 761 Bytes

Versions: 9

Compression:

Stored size: 761 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

9 entries across 9 versions & 1 rubygems

Version Path
rubyredrick-ri_cal-0.0.10 lib/ri_cal/component/journal.rb
rubyredrick-ri_cal-0.0.11 lib/ri_cal/component/journal.rb
rubyredrick-ri_cal-0.0.3 lib/ri_cal/component/journal.rb
rubyredrick-ri_cal-0.0.4 lib/ri_cal/component/journal.rb
rubyredrick-ri_cal-0.0.5 lib/ri_cal/component/journal.rb
rubyredrick-ri_cal-0.0.6 lib/ri_cal/component/journal.rb
rubyredrick-ri_cal-0.0.7 lib/ri_cal/component/journal.rb
rubyredrick-ri_cal-0.0.8 lib/ri_cal/component/journal.rb
rubyredrick-ri_cal-0.0.9 lib/ri_cal/component/journal.rb