Sha256: b47f7aff8f7c54a1f82342bf026c2d5e2c4be8201b41c8e42d405c4cb946baad
Contents?: true
Size: 333 Bytes
Versions: 3
Compression:
Stored size: 333 Bytes
Contents
require 'saxy/version' module Saxy class << self def parse(object, object_tag, options={}, &blk) parser = Parser.new(object, object_tag, options) if blk parser.each(blk) else parser.each end end end end require 'saxy/element' require 'saxy/parser' require 'saxy/parsing_error'
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
saxy-0.7.1 | lib/saxy.rb |
saxy-0.7.0 | lib/saxy.rb |
saxy-0.6.1 | lib/saxy.rb |