Class: Icalendar::Parameter
- Defined in:
- lib/icalendar/parameter.rb
Overview
A property can have attributes associated with it. These “property parameters” contain meta-information about the property or the property value. Property parameters are provided to specify such information as the location of an alternate text representation for a property value, the language of a text property value, the data type of the property value and other attributes.
Instance Method Summary collapse
Instance Method Details
#to_s ⇒ Object
11 12 13 14 15 16 17 18 19 20 21 22 |
# File 'lib/icalendar/parameter.rb', line 11 def to_s s = "" s << "#{@name}=" if is_escapable? s << escape(print_value()) else s << print_value end s end |