Class/Module Index [+]

Quicksearch

RiCal::Component::NonStandard

An NonStandard component represents a component (or subcomponent) not listed in RFC2445.
For example some icalendar data contains VVENUE components, a proposed extension to RFC2445
which was dropped.

Attributes

entity_name[R]

Public Class Methods

new(parent, entity_name) click to toggle source
# File lib/ri_cal/component/non_standard.rb, line 12
def initialize(parent, entity_name)
  super(parent)
  @entity_name = entity_name
  @source_lines = []
end

Public Instance Methods

export_properties_to(stream) click to toggle source
# File lib/ri_cal/component/non_standard.rb, line 26
def export_properties_to(stream)
  @source_lines.each do |line|
    stream.puts(line)
  end
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.