Support for the Ruby 2.4 series has ended. See here for reference.

In Files

  • rss/xmlparser.rb

Parent

Included Modules

Class/Module Index [+]

Quicksearch

RSS::REXMLLikeXMLParser

Public Instance Methods

character(data) click to toggle source
 
               # File rss/xmlparser.rb, line 48
def character(data)
  @listener.text(data)
end
            
endElement(name) click to toggle source
 
               # File rss/xmlparser.rb, line 44
def endElement(name)
  @listener.tag_end(name)
end
            
listener=(listener) click to toggle source
 
               # File rss/xmlparser.rb, line 36
def listener=(listener)
  @listener = listener
end
            
processingInstruction(target, content) click to toggle source
 
               # File rss/xmlparser.rb, line 56
def processingInstruction(target, content)
  @listener.instruction(target, content)
end
            
startElement(name, attrs) click to toggle source
 
               # File rss/xmlparser.rb, line 40
def startElement(name, attrs)
  @listener.tag_start(name, attrs)
end
            
xmlDecl(version, encoding, standalone) click to toggle source
 
               # File rss/xmlparser.rb, line 52
def xmlDecl(version, encoding, standalone)
  @listener.xmldecl(version, encoding, standalone == 1)
end