Class: Plist::PTag
- Inherits:
-
Object
- Object
- Plist::PTag
- Defined in:
- lib/plist/parser.rb
Direct Known Subclasses
PArray, PData, PDate, PDict, PFalse, PInteger, PKey, PList, PReal, PString, PTrue
Constant Summary collapse
- @@mappings =
{ }
Instance Attribute Summary collapse
-
#children ⇒ Object
Returns the value of attribute children.
-
#text ⇒ Object
Returns the value of attribute text.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize ⇒ PTag
constructor
A new instance of PTag.
- #to_ruby ⇒ Object
Constructor Details
Instance Attribute Details
#children ⇒ Object
Returns the value of attribute children.
148 149 150 |
# File 'lib/plist/parser.rb', line 148 def children @children end |
#text ⇒ Object
Returns the value of attribute text.
148 149 150 |
# File 'lib/plist/parser.rb', line 148 def text @text end |
Class Method Details
.inherited(sub_class) ⇒ Object
140 141 142 143 144 145 146 |
# File 'lib/plist/parser.rb', line 140 def PTag::inherited( sub_class ) key = sub_class.to_s.downcase key.gsub!(/^plist::/, '' ) key.gsub!(/^p/, '') unless key == "plist" @@mappings[key] = sub_class end |
.mappings ⇒ Object
136 137 138 |
# File 'lib/plist/parser.rb', line 136 def PTag::mappings @@mappings end |
Instance Method Details
#to_ruby ⇒ Object
153 154 155 |
# File 'lib/plist/parser.rb', line 153 def to_ruby raise "Unimplemented: " + self.class.to_s + "#to_ruby on #{self.inspect}" end |