static public Method

XMLWriter.each_installed_writer() { |klass.new| ... }

yields an instance of each installed XML writer

Source Code

# File xmlrpc/create.rb, line 92
def self.each_installed_writer
  XMLRPC::XMLWriter::Classes.each do |klass|
    begin
      yield klass.new
    rescue LoadError
    end
  end
end
Comments

Have your say
Please use Textile formatting (click here for a cheat sheet). Use <code/> and <pre/> for code samples.
Click here to login with OpenID to to post comments.