Method: Plist::Listener#text

Defined in:
lib/plist/parser.rb

#text(contents) ⇒ Object



57
58
59
60
61
62
# File 'lib/plist/parser.rb', line 57

def text(contents)
  if @open.last
    @open.last.text ||= ''.dup
    @open.last.text.concat(contents)
  end
end