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

In Files

  • xmlrpc/parser.rb

XMLRPC::XMLParser

Parser for XML-RPC call and response

Public Class Methods

each_installed_parser() click to toggle source

yields an instance of each installed parser

 
               # File xmlrpc/parser.rb, line 825
def self.each_installed_parser
  XMLRPC::XMLParser::Classes.each do |klass|
    begin
      yield klass.new
    rescue LoadError
    end
  end
end