Support for the Ruby 2.4 series has ended. See here for reference.
# File rss/xmlparser.rb, line 48
def character(data)
@listener.text(data)
end
# File rss/xmlparser.rb, line 44
def endElement(name)
@listener.tag_end(name)
end
# File rss/xmlparser.rb, line 36
def listener=(listener)
@listener = listener
end
# File rss/xmlparser.rb, line 56
def processingInstruction(target, content)
@listener.instruction(target, content)
end