Sha256: 9b0a519a199dfe642e864df54f5c3d0fa23afa8877c28285bf128d99deebfb44
Contents?: true
Size: 897 Bytes
Versions: 4
Compression:
Stored size: 897 Bytes
Contents
# $Id: libxml.rb 509 2008-07-22 02:11:00Z cfis $ # Please see the LICENSE file for copyright and distribution information # If running on Windows, then add the current directory to the PATH # for the current process so it can find the pre-built libxml2 and # iconv2 shared libraries (dlls). if RUBY_PLATFORM.match(/mswin/i) ENV['PATH'] += ";#{File.dirname(__FILE__)}" end # Load the C-based binding. require 'libxml_ruby' # Load Ruby supporting code. require 'libxml/parser' require 'libxml/parser_options' require 'libxml/document' require 'libxml/node' require 'libxml/node_set' require 'libxml/attributes' require 'libxml/attr' require 'libxml/tree' # Deprecated require 'libxml/properties' # Map the LibXML module into the XML module for both backwards # compatibility and ease of use. # # DEPRECATED: Use require 'xml' instead! # # include LibXML
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
libxml-ruby-0.8.2 | lib/libxml.rb |
libxml-ruby-0.8.2-x86-mswin32-60 | lib/libxml.rb |
libxml-ruby-0.8.3-x86-mswin32-60 | lib/libxml.rb |
libxml-ruby-0.8.3 | lib/libxml.rb |