Class: Pikuri::Thunderbird::IcalLine::Parsed
- Inherits:
-
Data
- Object
- Data
- Pikuri::Thunderbird::IcalLine::Parsed
- Defined in:
- lib/pikuri/thunderbird/ical_line.rb
Overview
One generic parsed content line.
Instance Attribute Summary collapse
-
#name ⇒ String
readonly
The property name, upcased (e.g.
"ATTENDEE"). -
#params ⇒ Hash{String => String}
readonly
Param name (upcased) → unquoted value.
-
#value ⇒ String
readonly
The text after the first unquoted
:(+""+ if none).
Instance Attribute Details
#name ⇒ String (readonly)
Returns the property name, upcased (e.g. "ATTENDEE").
64 |
# File 'lib/pikuri/thunderbird/ical_line.rb', line 64 Parsed = Data.define(:name, :params, :value) |
#params ⇒ Hash{String => String} (readonly)
Returns param name (upcased) → unquoted value.
64 |
# File 'lib/pikuri/thunderbird/ical_line.rb', line 64 Parsed = Data.define(:name, :params, :value) |
#value ⇒ String (readonly)
Returns the text after the first unquoted : (+""+ if none).
64 |
# File 'lib/pikuri/thunderbird/ical_line.rb', line 64 Parsed = Data.define(:name, :params, :value) |