Sha256: 43d30cae5fce53f117e4131e18045ed046e6d20690ef3297e8b0ede20e9ce141
Contents?: true
Size: 858 Bytes
Versions: 8
Compression:
Stored size: 858 Bytes
Contents
module Icalendar # A Journal calendar component is a grouping of # component properties that represent one or more descriptive text # notes associated with a particular calendar date. The "DTSTART" # property is used to specify the calendar date that the journal entry # is associated with. Generally, it will have a DATE value data type, # but it can also be used to specify a DATE-TIME value data type. # Examples of a journal entry include a daily record of a legislative # body or a journal entry of individual telephone contacts for the day # or an ordered list of accomplishments for the day. The Journal # calendar component can also be used to associate a document with a # calendar date. class Journal < Component def initialize() super("VJOURNAL") end def to_s print_string { } end end end
Version data entries
8 entries across 8 versions & 2 rubygems