-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Clean up and enhance high-level RDoc (#65)
- Loading branch information
1 parent
83bd4dc
commit eda1b20
Showing
7 changed files
with
48 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,31 @@ | ||
# -*- coding: utf-8 -*- | ||
# frozen_string_literal: false | ||
# REXML is an XML toolkit for Ruby[http://www.ruby-lang.org], in Ruby. | ||
# | ||
# REXML is a _pure_ Ruby, XML 1.0 conforming, | ||
# non-validating[http://www.w3.org/TR/2004/REC-xml-20040204/#sec-conformance] | ||
# toolkit with an intuitive API. REXML passes 100% of the non-validating Oasis | ||
# tests[http://www.oasis-open.org/committees/xml-conformance/xml-test-suite.shtml], | ||
# and provides tree, stream, SAX2, pull, and lightweight APIs. REXML also | ||
# includes a full XPath[http://www.w3c.org/tr/xpath] 1.0 implementation. Since | ||
# Ruby 1.8, REXML is included in the standard Ruby distribution. | ||
# | ||
# Main page:: http://www.germane-software.com/software/rexml | ||
# Author:: Sean Russell <serATgermaneHYPHENsoftwareDOTcom> | ||
# Date:: 2008/019 | ||
# Version:: 3.1.7.3 | ||
# | ||
# This API documentation can be downloaded from the REXML home page, or can | ||
# be accessed online[http://www.germane-software.com/software/rexml_doc] | ||
# | ||
# A tutorial is available in the REXML distribution in docs/tutorial.html, | ||
# or can be accessed | ||
# online[http://www.germane-software.com/software/rexml/docs/tutorial.html] | ||
# | ||
# \Module \REXML provides classes and methods for parsing, | ||
# editing, and generating XML. | ||
# | ||
# == Implementation | ||
# | ||
# \REXML: | ||
# - Is pure Ruby. | ||
# - Provides tree, stream, SAX2, pull, and lightweight APIs. | ||
# - Conforms to {XML version 1.0}[https://www.w3.org/TR/REC-xml/]. | ||
# - Fully implements {XPath version 1.0}[http://www.w3c.org/tr/xpath]. | ||
# - Is {non-validating}[https://www.w3.org/TR/xml/]. | ||
# - Passes 100% of the non-validating {Oasis tests}[http://www.oasis-open.org/committees/xml-conformance/xml-test-suite.shtml]. | ||
# | ||
# == In a Hurry? | ||
# | ||
# If you're somewhat familiar with XML | ||
# and have a particular task in mind, | ||
# you may want to see {the tasks pages}[doc/rexml/tasks/tocs/master_toc_rdoc.html]. | ||
# | ||
# == API | ||
# | ||
# Among the most important classes for using \REXML are: | ||
# - REXML::Document. | ||
# - REXML::Element. | ||
# | ||
module REXML | ||
COPYRIGHT = "Copyright © 2001-2008 Sean Russell <[email protected]>" | ||
DATE = "2008/019" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters