Class: Pikuri::Thunderbird::IcalLine::Parsed

Inherits:
Data
  • Object
show all
Defined in:
lib/pikuri/thunderbird/ical_line.rb

Overview

One generic parsed content line.

Instance Attribute Summary collapse

Instance Attribute Details

#nameString (readonly)

Returns the property name, upcased (e.g. "ATTENDEE").

Returns:

  • (String)

    the property name, upcased (e.g. "ATTENDEE").



64
# File 'lib/pikuri/thunderbird/ical_line.rb', line 64

Parsed = Data.define(:name, :params, :value)

#paramsHash{String => String} (readonly)

Returns param name (upcased) → unquoted value.

Returns:

  • (Hash{String => String})

    param name (upcased) → unquoted value.



64
# File 'lib/pikuri/thunderbird/ical_line.rb', line 64

Parsed = Data.define(:name, :params, :value)

#valueString (readonly)

Returns the text after the first unquoted : (+""+ if none).

Returns:

  • (String)

    the text after the first unquoted : (+""+ if none).



64
# File 'lib/pikuri/thunderbird/ical_line.rb', line 64

Parsed = Data.define(:name, :params, :value)