Maintenance of Ruby 2.0.0 ended on February 24, 2016. Read more

In Files

  • rss/parser.rb

Parent

Methods

Class/Module Index [+]

Quicksearch

RSS::NotValidXMLParser

Public Class Methods

new(parser) click to toggle source
 
               # File rss/parser.rb, line 35
def initialize(parser)
  super("#{parser} is not an available XML parser. " <<
        "Available XML parser" <<
        (AVAILABLE_PARSERS.size > 1 ? "s are " : " is ") <<
        "#{AVAILABLE_PARSERS.inspect}.")
end