rexml 3.2.3 → 3.2.8
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of rexml might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/NEWS.md +219 -0
- data/README.md +11 -14
- data/doc/rexml/context.rdoc +143 -0
- data/doc/rexml/tasks/rdoc/child.rdoc +87 -0
- data/doc/rexml/tasks/rdoc/document.rdoc +276 -0
- data/doc/rexml/tasks/rdoc/element.rdoc +602 -0
- data/doc/rexml/tasks/rdoc/node.rdoc +97 -0
- data/doc/rexml/tasks/rdoc/parent.rdoc +267 -0
- data/doc/rexml/tasks/tocs/child_toc.rdoc +12 -0
- data/doc/rexml/tasks/tocs/document_toc.rdoc +30 -0
- data/doc/rexml/tasks/tocs/element_toc.rdoc +55 -0
- data/doc/rexml/tasks/tocs/master_toc.rdoc +135 -0
- data/doc/rexml/tasks/tocs/node_toc.rdoc +16 -0
- data/doc/rexml/tasks/tocs/parent_toc.rdoc +25 -0
- data/doc/rexml/tutorial.rdoc +1358 -0
- data/lib/rexml/attribute.rb +14 -9
- data/lib/rexml/doctype.rb +55 -31
- data/lib/rexml/document.rb +194 -34
- data/lib/rexml/element.rb +1786 -456
- data/lib/rexml/entity.rb +26 -16
- data/lib/rexml/formatters/pretty.rb +2 -2
- data/lib/rexml/functions.rb +1 -2
- data/lib/rexml/light/node.rb +0 -8
- data/lib/rexml/namespace.rb +8 -4
- data/lib/rexml/parseexception.rb +1 -0
- data/lib/rexml/parsers/baseparser.rb +321 -222
- data/lib/rexml/parsers/xpathparser.rb +161 -97
- data/lib/rexml/rexml.rb +29 -22
- data/lib/rexml/source.rb +72 -99
- data/lib/rexml/text.rb +7 -5
- data/lib/rexml/xpath_parser.rb +43 -33
- data/lib/rexml.rb +3 -0
- metadata +43 -34
- data/.gitignore +0 -9
- data/.travis.yml +0 -24
- data/Gemfile +0 -6
- data/Rakefile +0 -8
- data/rexml.gemspec +0 -84
data/rexml.gemspec
DELETED
@@ -1,84 +0,0 @@
|
|
1
|
-
begin
|
2
|
-
require_relative "lib/rexml/rexml"
|
3
|
-
rescue LoadError
|
4
|
-
# for Ruby core repository
|
5
|
-
require_relative "rexml"
|
6
|
-
end
|
7
|
-
|
8
|
-
Gem::Specification.new do |spec|
|
9
|
-
spec.name = "rexml"
|
10
|
-
spec.version = REXML::VERSION
|
11
|
-
spec.authors = ["Kouhei Sutou"]
|
12
|
-
spec.email = ["kou@cozmixng.org"]
|
13
|
-
|
14
|
-
spec.summary = %q{An XML toolkit for Ruby}
|
15
|
-
spec.description = %q{An XML toolkit for Ruby}
|
16
|
-
spec.homepage = "https://github.com/ruby/rexml"
|
17
|
-
spec.license = "BSD-2-Clause"
|
18
|
-
|
19
|
-
spec.files = [
|
20
|
-
".gitignore",
|
21
|
-
".travis.yml",
|
22
|
-
"Gemfile",
|
23
|
-
"LICENSE.txt",
|
24
|
-
"NEWS.md",
|
25
|
-
"README.md",
|
26
|
-
"Rakefile",
|
27
|
-
"lib/rexml/attlistdecl.rb",
|
28
|
-
"lib/rexml/attribute.rb",
|
29
|
-
"lib/rexml/cdata.rb",
|
30
|
-
"lib/rexml/child.rb",
|
31
|
-
"lib/rexml/comment.rb",
|
32
|
-
"lib/rexml/doctype.rb",
|
33
|
-
"lib/rexml/document.rb",
|
34
|
-
"lib/rexml/dtd/attlistdecl.rb",
|
35
|
-
"lib/rexml/dtd/dtd.rb",
|
36
|
-
"lib/rexml/dtd/elementdecl.rb",
|
37
|
-
"lib/rexml/dtd/entitydecl.rb",
|
38
|
-
"lib/rexml/dtd/notationdecl.rb",
|
39
|
-
"lib/rexml/element.rb",
|
40
|
-
"lib/rexml/encoding.rb",
|
41
|
-
"lib/rexml/entity.rb",
|
42
|
-
"lib/rexml/formatters/default.rb",
|
43
|
-
"lib/rexml/formatters/pretty.rb",
|
44
|
-
"lib/rexml/formatters/transitive.rb",
|
45
|
-
"lib/rexml/functions.rb",
|
46
|
-
"lib/rexml/instruction.rb",
|
47
|
-
"lib/rexml/light/node.rb",
|
48
|
-
"lib/rexml/namespace.rb",
|
49
|
-
"lib/rexml/node.rb",
|
50
|
-
"lib/rexml/output.rb",
|
51
|
-
"lib/rexml/parent.rb",
|
52
|
-
"lib/rexml/parseexception.rb",
|
53
|
-
"lib/rexml/parsers/baseparser.rb",
|
54
|
-
"lib/rexml/parsers/lightparser.rb",
|
55
|
-
"lib/rexml/parsers/pullparser.rb",
|
56
|
-
"lib/rexml/parsers/sax2parser.rb",
|
57
|
-
"lib/rexml/parsers/streamparser.rb",
|
58
|
-
"lib/rexml/parsers/treeparser.rb",
|
59
|
-
"lib/rexml/parsers/ultralightparser.rb",
|
60
|
-
"lib/rexml/parsers/xpathparser.rb",
|
61
|
-
"lib/rexml/quickpath.rb",
|
62
|
-
"lib/rexml/rexml.rb",
|
63
|
-
"lib/rexml/sax2listener.rb",
|
64
|
-
"lib/rexml/security.rb",
|
65
|
-
"lib/rexml/source.rb",
|
66
|
-
"lib/rexml/streamlistener.rb",
|
67
|
-
"lib/rexml/text.rb",
|
68
|
-
"lib/rexml/undefinednamespaceexception.rb",
|
69
|
-
"lib/rexml/validation/relaxng.rb",
|
70
|
-
"lib/rexml/validation/validation.rb",
|
71
|
-
"lib/rexml/validation/validationexception.rb",
|
72
|
-
"lib/rexml/xmldecl.rb",
|
73
|
-
"lib/rexml/xmltokens.rb",
|
74
|
-
"lib/rexml/xpath.rb",
|
75
|
-
"lib/rexml/xpath_parser.rb",
|
76
|
-
"rexml.gemspec",
|
77
|
-
]
|
78
|
-
spec.bindir = "exe"
|
79
|
-
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
80
|
-
spec.require_paths = ["lib"]
|
81
|
-
|
82
|
-
spec.add_development_dependency "bundler"
|
83
|
-
spec.add_development_dependency "rake"
|
84
|
-
end
|