Class: RiCal::Component::NonStandard
- Inherits:
-
RiCal::Component
- Object
- RiCal::Component
- RiCal::Component::NonStandard
- Defined in:
- lib/ri_cal/component/non_standard.rb
Overview
-
©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.
Instance Attribute Summary collapse
-
#entity_name ⇒ Object
readonly
Returns the value of attribute entity_name.
Attributes inherited from RiCal::Component
Instance Method Summary collapse
- #export_properties_to(stream) ⇒ Object
-
#initialize(parent, entity_name) ⇒ NonStandard
constructor
A new instance of NonStandard.
-
#process_line(parser, line) ⇒ Object
:nodoc:.
Methods inherited from RiCal::Component
#add_property_date_times_to, #add_subcomponent, #add_x_property, #alarms, #daylight, #default_tzid, entity_name, #export, #export_prop_to, #export_subcomponent_to, #export_to, #export_x_properties_to, #find_timezone, from_parser, #imported?, #initialize_copy, #last_before_local, #last_before_utc, #last_period, #method_missing, parse, parse_string, #parse_subcomponent, #prop_string, #standard, #subcomponent_class, #subcomponents, #time_zone_for, #to_s, #tz_info_source?, #valid?, #x_properties
Constructor Details
#initialize(parent, entity_name) ⇒ NonStandard
Returns a new instance of NonStandard.
12 13 14 15 16 |
# File 'lib/ri_cal/component/non_standard.rb', line 12 def initialize(parent, entity_name) super(parent) @entity_name = entity_name @source_lines = [] end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class RiCal::Component
Instance Attribute Details
#entity_name ⇒ Object (readonly)
Returns the value of attribute entity_name.
10 11 12 |
# File 'lib/ri_cal/component/non_standard.rb', line 10 def entity_name @entity_name end |
Instance Method Details
#export_properties_to(stream) ⇒ Object
26 27 28 29 30 |
# 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 |
#process_line(parser, line) ⇒ Object
:nodoc:
18 19 20 21 22 23 24 |
# File 'lib/ri_cal/component/non_standard.rb', line 18 def process_line(parser, line) #:nodoc: if line[:name] == "BEGIN" parse_subcomponent(parser, line) else @source_lines << parser.last_line_str end end |