public
Description: ruby libxml library targetting speed and ease of use. provides an hpricot-like interface to xml
Homepage: http://trac.hasno.info/fastxml
Clone URL: git://github.com/segfault/fastxml.git
segfault (author)
Fri Aug 29 21:39:30 -0700 2008
commit  d9ed1b8e030638c4b92d3a7f271eec6b3cc03235
tree    31ae42382ebb2ddd136c27a43f3c4f0269ec03cb
parent  5f7de15c00f6f991e77caf8bd30ac9eda203035a
= FastXml
a simple fast xml library using libxml and libxslt with an hpricot-like api

== Overview

FastXml: 

 1) is not standalone, it *requires libxml* and *libxslt*
 2) attempts to provide the speediest xml parsing library available for ruby
 3) provides an hpricot-like syntax for xml parsing and xslt processing

== Example
 doc = FastXml( open( 'test.xml ) )
 puts doc.root.name
 puts doc.root.content
 
 doc.root.children.each do |node|
   puts "%s => %s" % [ node.name, node.content ]
 end

 (doc/"/node").each { |node| puts node.inspect } #xpath search
 doc.search( "//node" ).each { |node| puts node.inspect } 


== Copyright & Licensing
Copyright Mark Guzman 2007-2008

Please see the LICENSE file for more details. The short version is it's under the same terms as Ruby.