File: rexml/rexml.rb

Overview
Module Structure
Code

Overview

Module Structure

  module: <Toplevel Module>
  module: REXML#24
has properties
constant: COPYRIGHT #25
constant: VERSION #26
constant: DATE #27
constant: REVISION #28
constant: Copyright #30
constant: Version #31

Code

   1  # -*- encoding: utf-8 -*-
   2  # REXML is an XML toolkit for Ruby[http://www.ruby-lang.org], in Ruby.
   3  #
   4  # REXML is a _pure_ Ruby, XML 1.0 conforming,
   5  # non-validating[http://www.w3.org/TR/2004/REC-xml-20040204/#sec-conformance]
   6  # toolkit with an intuitive API.  REXML passes 100% of the non-validating Oasis
   7  # tests[http://www.oasis-open.org/committees/xml-conformance/xml-test-suite.shtml],
   8  # and provides tree, stream, SAX2, pull, and lightweight APIs.  REXML also 
   9  # includes a full XPath[http://www.w3c.org/tr/xpath] 1.0 implementation. Since 
  10  # Ruby 1.8, REXML is included in the standard Ruby distribution.
  11  #
  12  # Main page:: http://www.germane-software.com/software/rexml
  13  # Author:: Sean Russell <serATgermaneHYPHENsoftwareDOTcom>
  14  # Version:: 3.1.7.2
  15  # Date:: 2007/275
  16  # Revision:: $Revision: 22842 $
  17  # 
  18  # This API documentation can be downloaded from the REXML home page, or can
  19  # be accessed online[http://www.germane-software.com/software/rexml_doc]
  20  #
  21  # A tutorial is available in the REXML distribution in docs/tutorial.html,
  22  # or can be accessed 
  23  # online[http://www.germane-software.com/software/rexml/docs/tutorial.html]
  24  module REXML
  25    COPYRIGHT = "Copyright \xC2\xA9 2001-2006 Sean Russell <ser@germane-software.com>"
  26    VERSION = "3.1.7.3"
  27    DATE = "2007/275"
  28    REVISION = "$Revision: 22842 $".gsub(/\$Revision:|\$/,'').strip
  29 
  30    Copyright = COPYRIGHT
  31    Version = VERSION
  32  end