class RiCal::Component::NonStandard
-
©2009 Rick DeNatale, All rights reserved. Refer to the file README.txt for the license
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
Calls superclass method
# 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