|
1 | 1 | # -*- coding: utf-8 -*-
|
2 | 2 | # frozen_string_literal: false
|
3 |
| -# REXML is an XML toolkit for Ruby[http://www.ruby-lang.org], in Ruby. |
4 |
| -# |
5 |
| -# REXML is a _pure_ Ruby, XML 1.0 conforming, |
6 |
| -# non-validating[http://www.w3.org/TR/2004/REC-xml-20040204/#sec-conformance] |
7 |
| -# toolkit with an intuitive API. REXML passes 100% of the non-validating Oasis |
8 |
| -# tests[http://www.oasis-open.org/committees/xml-conformance/xml-test-suite.shtml], |
9 |
| -# and provides tree, stream, SAX2, pull, and lightweight APIs. REXML also |
10 |
| -# includes a full XPath[http://www.w3c.org/tr/xpath] 1.0 implementation. Since |
11 |
| -# Ruby 1.8, REXML is included in the standard Ruby distribution. |
12 |
| -# |
13 |
| -# Main page:: http://www.germane-software.com/software/rexml |
14 |
| -# Author:: Sean Russell <serATgermaneHYPHENsoftwareDOTcom> |
15 |
| -# Date:: 2008/019 |
16 |
| -# Version:: 3.1.7.3 |
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] |
| 3 | +# |
| 4 | +# \Module \REXML provides classes and methods for parsing, |
| 5 | +# editing, and generating XML. |
| 6 | +# |
| 7 | +# == Implementation |
| 8 | +# |
| 9 | +# \REXML: |
| 10 | +# - Is pure Ruby. |
| 11 | +# - Provides tree, stream, SAX2, pull, and lightweight APIs. |
| 12 | +# - Conforms to {XML version 1.0}[https://www.w3.org/TR/REC-xml/]. |
| 13 | +# - Fully implements {XPath version 1.0}[http://www.w3c.org/tr/xpath]. |
| 14 | +# - Is {non-validating}[https://www.w3.org/TR/xml/]. |
| 15 | +# - Passes 100% of the non-validating {Oasis tests}[http://www.oasis-open.org/committees/xml-conformance/xml-test-suite.shtml]. |
| 16 | +# |
| 17 | +# == In a Hurry? |
| 18 | +# |
| 19 | +# If you're somewhat familiar with XML |
| 20 | +# and have a particular task in mind, |
| 21 | +# you may want to see {the tasks pages}[doc/rexml/tasks/tocs/master_toc_rdoc.html]. |
| 22 | +# |
| 23 | +# == API |
| 24 | +# |
| 25 | +# Among the most important classes for using \REXML are: |
| 26 | +# - REXML::Document. |
| 27 | +# - REXML::Element. |
| 28 | +# |
24 | 29 | module REXML
|
25 | 30 | COPYRIGHT = "Copyright © 2001-2008 Sean Russell <[email protected]>"
|
26 | 31 | DATE = "2008/019"
|
|
0 commit comments