Support for the Ruby 2.1 series ended on March 31 2017. See here for details.
# File rss/xmlparser.rb, line 47 def character(data) @listener.text(data) end
# File rss/xmlparser.rb, line 43 def endElement(name) @listener.tag_end(name) end
# File rss/xmlparser.rb, line 35 def listener=(listener) @listener = listener end
# File rss/xmlparser.rb, line 55 def processingInstruction(target, content) @listener.instruction(target, content) end