1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Import REXML 3.1.9

It restores removed REXML::Parsers::BaseParser::UNQME_STR.
Because it's used by kramdown.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@66536 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
kou 2018-12-25 02:26:30 +00:00
parent 1bcc76338d
commit 04e0609a06
4 changed files with 7 additions and 2 deletions

2
NEWS
View file

@ -480,7 +480,7 @@ sufficient information, see the ChangeLog file or Redmine
[REXML]
* Upgrade to REXML 3.1.8.
* Upgrade to REXML 3.1.9.
See https://github.com/ruby/rexml/blob/master/NEWS.md.
[Improved some XPath implementations]

View file

@ -37,6 +37,10 @@ module REXML
QNAME_STR= "(?:(#{NCNAME_STR}):)?(#{NCNAME_STR})"
QNAME = /(#{QNAME_STR})/
# Just for backward compatibility. For example, kramdown uses this.
# It's not used in REXML.
UNAME_STR= "(?:#{NCNAME_STR}:)?#{NCNAME_STR}"
NAMECHAR = '[\-\w\.:]'
NAME = "([\\w:]#{NAMECHAR}*)"
NMTOKEN = "(?:#{NAMECHAR})+"

View file

@ -21,6 +21,7 @@ Gem::Specification.new do |spec|
".travis.yml",
"Gemfile",
"LICENSE.txt",
"NEWS.md",
"README.md",
"Rakefile",
"lib/rexml/attlistdecl.rb",

View file

@ -24,7 +24,7 @@
module REXML
COPYRIGHT = "Copyright © 2001-2008 Sean Russell <ser@germane-software.com>"
DATE = "2008/019"
VERSION = "3.1.8"
VERSION = "3.1.9"
REVISION = ""
Copyright = COPYRIGHT