public
Description: A declarative sax parsing library backed by Nokogiri.
Homepage:
Clone URL: git://github.com/pauldix/sax-machine.git
sax-machine / lib / sax-machine.rb
100644 11 lines (8 sloc) 0.296 kb
1
2
3
4
5
6
7
8
9
10
11
require "rubygems"
 
$LOAD_PATH.unshift(File.expand_path(File.dirname(__FILE__))) unless $LOAD_PATH.include?(File.expand_path(File.dirname(__FILE__)))
 
require "sax-machine/sax_document"
require "sax-machine/sax_handler"
require "sax-machine/sax_config"
 
module SAXMachine
  VERSION = "0.0.14"
end