Class: Plist::Listener
- Inherits:
-
Object
- Object
- Plist::Listener
- Defined in:
- lib/facter/util/plist/parser.rb
Instance Attribute Summary collapse
-
#open ⇒ Object
include REXML::StreamListener.
-
#result ⇒ Object
include REXML::StreamListener.
Instance Method Summary collapse
-
#initialize ⇒ Listener
constructor
A new instance of Listener.
- #tag_end(name) ⇒ Object
- #tag_start(name, attributes) ⇒ Object
- #text(contents) ⇒ Object
Constructor Details
Instance Attribute Details
#open ⇒ Object
include REXML::StreamListener
35 36 37 |
# File 'lib/facter/util/plist/parser.rb', line 35 def open @open end |
#result ⇒ Object
include REXML::StreamListener
35 36 37 |
# File 'lib/facter/util/plist/parser.rb', line 35 def result @result end |
Instance Method Details
#tag_end(name) ⇒ Object
51 52 53 54 55 56 57 58 |
# File 'lib/facter/util/plist/parser.rb', line 51 def tag_end(name) last = @open.pop if @open.empty? @result = last.to_ruby else @open.last.children.push last end end |
#tag_start(name, attributes) ⇒ Object
43 44 45 |
# File 'lib/facter/util/plist/parser.rb', line 43 def tag_start(name, attributes) @open.push PTag::mappings[name].new end |
#text(contents) ⇒ Object
47 48 49 |
# File 'lib/facter/util/plist/parser.rb', line 47 def text( contents ) @open.last.text = contents if @open.last end |