libxml-ruby 3.2.2-x64-mingw-ucrt
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/HISTORY +848 -0
- data/LICENSE +21 -0
- data/MANIFEST +166 -0
- data/README.rdoc +217 -0
- data/Rakefile +99 -0
- data/ext/libxml/extconf.rb +61 -0
- data/ext/libxml/libxml.c +80 -0
- data/ext/libxml/libxml_ruby.def +35 -0
- data/ext/libxml/ruby_libxml.h +67 -0
- data/ext/libxml/ruby_xml.c +933 -0
- data/ext/libxml/ruby_xml.h +10 -0
- data/ext/libxml/ruby_xml_attr.c +333 -0
- data/ext/libxml/ruby_xml_attr.h +12 -0
- data/ext/libxml/ruby_xml_attr_decl.c +153 -0
- data/ext/libxml/ruby_xml_attr_decl.h +11 -0
- data/ext/libxml/ruby_xml_attributes.c +275 -0
- data/ext/libxml/ruby_xml_attributes.h +15 -0
- data/ext/libxml/ruby_xml_cbg.c +85 -0
- data/ext/libxml/ruby_xml_document.c +1123 -0
- data/ext/libxml/ruby_xml_document.h +11 -0
- data/ext/libxml/ruby_xml_dtd.c +248 -0
- data/ext/libxml/ruby_xml_dtd.h +9 -0
- data/ext/libxml/ruby_xml_encoding.c +250 -0
- data/ext/libxml/ruby_xml_encoding.h +16 -0
- data/ext/libxml/ruby_xml_error.c +996 -0
- data/ext/libxml/ruby_xml_error.h +12 -0
- data/ext/libxml/ruby_xml_html_parser.c +89 -0
- data/ext/libxml/ruby_xml_html_parser.h +10 -0
- data/ext/libxml/ruby_xml_html_parser_context.c +337 -0
- data/ext/libxml/ruby_xml_html_parser_context.h +10 -0
- data/ext/libxml/ruby_xml_html_parser_options.c +46 -0
- data/ext/libxml/ruby_xml_html_parser_options.h +10 -0
- data/ext/libxml/ruby_xml_input_cbg.c +191 -0
- data/ext/libxml/ruby_xml_input_cbg.h +20 -0
- data/ext/libxml/ruby_xml_io.c +47 -0
- data/ext/libxml/ruby_xml_io.h +10 -0
- data/ext/libxml/ruby_xml_namespace.c +153 -0
- data/ext/libxml/ruby_xml_namespace.h +10 -0
- data/ext/libxml/ruby_xml_namespaces.c +293 -0
- data/ext/libxml/ruby_xml_namespaces.h +9 -0
- data/ext/libxml/ruby_xml_node.c +1402 -0
- data/ext/libxml/ruby_xml_node.h +13 -0
- data/ext/libxml/ruby_xml_parser.c +91 -0
- data/ext/libxml/ruby_xml_parser.h +12 -0
- data/ext/libxml/ruby_xml_parser_context.c +999 -0
- data/ext/libxml/ruby_xml_parser_context.h +10 -0
- data/ext/libxml/ruby_xml_parser_options.c +66 -0
- data/ext/libxml/ruby_xml_parser_options.h +12 -0
- data/ext/libxml/ruby_xml_reader.c +1239 -0
- data/ext/libxml/ruby_xml_reader.h +17 -0
- data/ext/libxml/ruby_xml_relaxng.c +110 -0
- data/ext/libxml/ruby_xml_relaxng.h +10 -0
- data/ext/libxml/ruby_xml_sax2_handler.c +326 -0
- data/ext/libxml/ruby_xml_sax2_handler.h +10 -0
- data/ext/libxml/ruby_xml_sax_parser.c +116 -0
- data/ext/libxml/ruby_xml_sax_parser.h +10 -0
- data/ext/libxml/ruby_xml_schema.c +278 -0
- data/ext/libxml/ruby_xml_schema.h +809 -0
- data/ext/libxml/ruby_xml_schema_attribute.c +109 -0
- data/ext/libxml/ruby_xml_schema_attribute.h +15 -0
- data/ext/libxml/ruby_xml_schema_element.c +95 -0
- data/ext/libxml/ruby_xml_schema_element.h +14 -0
- data/ext/libxml/ruby_xml_schema_facet.c +52 -0
- data/ext/libxml/ruby_xml_schema_facet.h +13 -0
- data/ext/libxml/ruby_xml_schema_type.c +232 -0
- data/ext/libxml/ruby_xml_schema_type.h +9 -0
- data/ext/libxml/ruby_xml_version.h +9 -0
- data/ext/libxml/ruby_xml_writer.c +1133 -0
- data/ext/libxml/ruby_xml_writer.h +10 -0
- data/ext/libxml/ruby_xml_xinclude.c +16 -0
- data/ext/libxml/ruby_xml_xinclude.h +11 -0
- data/ext/libxml/ruby_xml_xpath.c +194 -0
- data/ext/libxml/ruby_xml_xpath.h +13 -0
- data/ext/libxml/ruby_xml_xpath_context.c +360 -0
- data/ext/libxml/ruby_xml_xpath_context.h +9 -0
- data/ext/libxml/ruby_xml_xpath_expression.c +81 -0
- data/ext/libxml/ruby_xml_xpath_expression.h +10 -0
- data/ext/libxml/ruby_xml_xpath_object.c +338 -0
- data/ext/libxml/ruby_xml_xpath_object.h +17 -0
- data/ext/libxml/ruby_xml_xpointer.c +99 -0
- data/ext/libxml/ruby_xml_xpointer.h +11 -0
- data/ext/vc/libxml_ruby.sln +28 -0
- data/lib/3.1/libxml_ruby.so +0 -0
- data/lib/libxml/attr.rb +123 -0
- data/lib/libxml/attr_decl.rb +80 -0
- data/lib/libxml/attributes.rb +14 -0
- data/lib/libxml/document.rb +194 -0
- data/lib/libxml/error.rb +95 -0
- data/lib/libxml/hpricot.rb +78 -0
- data/lib/libxml/html_parser.rb +96 -0
- data/lib/libxml/namespace.rb +62 -0
- data/lib/libxml/namespaces.rb +38 -0
- data/lib/libxml/node.rb +323 -0
- data/lib/libxml/parser.rb +101 -0
- data/lib/libxml/sax_callbacks.rb +180 -0
- data/lib/libxml/sax_parser.rb +41 -0
- data/lib/libxml/schema/attribute.rb +19 -0
- data/lib/libxml/schema/element.rb +19 -0
- data/lib/libxml/schema/type.rb +21 -0
- data/lib/libxml/schema.rb +48 -0
- data/lib/libxml/tree.rb +29 -0
- data/lib/libxml-ruby.rb +30 -0
- data/lib/libxml.rb +5 -0
- data/lib/xml/libxml.rb +10 -0
- data/lib/xml.rb +14 -0
- data/libxml-ruby.gemspec +48 -0
- data/script/benchmark/depixelate +634 -0
- data/script/benchmark/hamlet.xml +9055 -0
- data/script/benchmark/parsecount +170 -0
- data/script/benchmark/sock_entries.xml +507 -0
- data/script/benchmark/throughput +41 -0
- data/script/test +6 -0
- data/setup.rb +1584 -0
- data/test/c14n/given/doc.dtd +1 -0
- data/test/c14n/given/example-1.xml +14 -0
- data/test/c14n/given/example-2.xml +11 -0
- data/test/c14n/given/example-3.xml +18 -0
- data/test/c14n/given/example-4.xml +9 -0
- data/test/c14n/given/example-5.xml +12 -0
- data/test/c14n/given/example-6.xml +2 -0
- data/test/c14n/given/example-7.xml +11 -0
- data/test/c14n/given/example-8.xml +11 -0
- data/test/c14n/given/example-8.xpath +10 -0
- data/test/c14n/given/world.txt +1 -0
- data/test/c14n/result/1-1-without-comments/example-1 +4 -0
- data/test/c14n/result/1-1-without-comments/example-2 +11 -0
- data/test/c14n/result/1-1-without-comments/example-3 +14 -0
- data/test/c14n/result/1-1-without-comments/example-4 +9 -0
- data/test/c14n/result/1-1-without-comments/example-5 +3 -0
- data/test/c14n/result/1-1-without-comments/example-6 +1 -0
- data/test/c14n/result/1-1-without-comments/example-7 +1 -0
- data/test/c14n/result/1-1-without-comments/example-8 +1 -0
- data/test/c14n/result/with-comments/example-1 +6 -0
- data/test/c14n/result/with-comments/example-2 +11 -0
- data/test/c14n/result/with-comments/example-3 +14 -0
- data/test/c14n/result/with-comments/example-4 +9 -0
- data/test/c14n/result/with-comments/example-5 +4 -0
- data/test/c14n/result/with-comments/example-6 +1 -0
- data/test/c14n/result/with-comments/example-7 +1 -0
- data/test/c14n/result/without-comments/example-1 +4 -0
- data/test/c14n/result/without-comments/example-2 +11 -0
- data/test/c14n/result/without-comments/example-3 +14 -0
- data/test/c14n/result/without-comments/example-4 +9 -0
- data/test/c14n/result/without-comments/example-5 +3 -0
- data/test/c14n/result/without-comments/example-6 +1 -0
- data/test/c14n/result/without-comments/example-7 +1 -0
- data/test/model/atom.xml +13 -0
- data/test/model/bands.iso-8859-1.xml +5 -0
- data/test/model/bands.utf-8.xml +5 -0
- data/test/model/bands.xml +5 -0
- data/test/model/books.xml +154 -0
- data/test/model/cwm_1_0.xml +11336 -0
- data/test/model/merge_bug_data.xml +58 -0
- data/test/model/ruby-lang.html +238 -0
- data/test/model/rubynet.xml +79 -0
- data/test/model/rubynet_project +1 -0
- data/test/model/shiporder.rnc +28 -0
- data/test/model/shiporder.rng +86 -0
- data/test/model/shiporder.xml +23 -0
- data/test/model/shiporder.xsd +40 -0
- data/test/model/soap.xml +27 -0
- data/test/model/xinclude.xml +5 -0
- data/test/test_attr.rb +181 -0
- data/test/test_attr_decl.rb +132 -0
- data/test/test_attributes.rb +136 -0
- data/test/test_canonicalize.rb +120 -0
- data/test/test_deprecated_require.rb +12 -0
- data/test/test_document.rb +132 -0
- data/test/test_document_write.rb +146 -0
- data/test/test_dtd.rb +129 -0
- data/test/test_encoding.rb +129 -0
- data/test/test_encoding_sax.rb +115 -0
- data/test/test_error.rb +178 -0
- data/test/test_helper.rb +9 -0
- data/test/test_html_parser.rb +162 -0
- data/test/test_html_parser_context.rb +23 -0
- data/test/test_namespace.rb +60 -0
- data/test/test_namespaces.rb +200 -0
- data/test/test_node.rb +237 -0
- data/test/test_node_cdata.rb +50 -0
- data/test/test_node_comment.rb +32 -0
- data/test/test_node_copy.rb +40 -0
- data/test/test_node_edit.rb +158 -0
- data/test/test_node_pi.rb +37 -0
- data/test/test_node_text.rb +69 -0
- data/test/test_node_write.rb +97 -0
- data/test/test_node_xlink.rb +28 -0
- data/test/test_parser.rb +324 -0
- data/test/test_parser_context.rb +198 -0
- data/test/test_properties.rb +38 -0
- data/test/test_reader.rb +364 -0
- data/test/test_relaxng.rb +53 -0
- data/test/test_sax_parser.rb +326 -0
- data/test/test_schema.rb +168 -0
- data/test/test_suite.rb +48 -0
- data/test/test_traversal.rb +152 -0
- data/test/test_writer.rb +468 -0
- data/test/test_xinclude.rb +20 -0
- data/test/test_xml.rb +263 -0
- data/test/test_xpath.rb +244 -0
- data/test/test_xpath_context.rb +88 -0
- data/test/test_xpath_expression.rb +37 -0
- data/test/test_xpointer.rb +72 -0
- metadata +325 -0
metadata
ADDED
@@ -0,0 +1,325 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: libxml-ruby
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 3.2.2
|
5
|
+
platform: x64-mingw-ucrt
|
6
|
+
authors:
|
7
|
+
- Ross Bamform
|
8
|
+
- Wai-Sun Chia
|
9
|
+
- Sean Chittenden
|
10
|
+
- Dan Janwoski
|
11
|
+
- Anurag Priyam
|
12
|
+
- Charlie Savage
|
13
|
+
- Ryan Johnson
|
14
|
+
autorequire:
|
15
|
+
bindir: bin
|
16
|
+
cert_chain: []
|
17
|
+
date: 2022-01-16 00:00:00.000000000 Z
|
18
|
+
dependencies:
|
19
|
+
- !ruby/object:Gem::Dependency
|
20
|
+
name: rake-compiler
|
21
|
+
requirement: !ruby/object:Gem::Requirement
|
22
|
+
requirements:
|
23
|
+
- - ">="
|
24
|
+
- !ruby/object:Gem::Version
|
25
|
+
version: '0'
|
26
|
+
type: :development
|
27
|
+
prerelease: false
|
28
|
+
version_requirements: !ruby/object:Gem::Requirement
|
29
|
+
requirements:
|
30
|
+
- - ">="
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '0'
|
33
|
+
- !ruby/object:Gem::Dependency
|
34
|
+
name: minitest
|
35
|
+
requirement: !ruby/object:Gem::Requirement
|
36
|
+
requirements:
|
37
|
+
- - ">="
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
version: '0'
|
40
|
+
type: :development
|
41
|
+
prerelease: false
|
42
|
+
version_requirements: !ruby/object:Gem::Requirement
|
43
|
+
requirements:
|
44
|
+
- - ">="
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: '0'
|
47
|
+
description: |2
|
48
|
+
The Libxml-Ruby project provides Ruby language bindings for the GNOME
|
49
|
+
Libxml2 XML toolkit. It is free software, released under the MIT License.
|
50
|
+
Libxml-ruby's primary advantage over REXML is performance - if speed
|
51
|
+
is your need, these are good libraries to consider, as demonstrated
|
52
|
+
by the informal benchmark below.
|
53
|
+
email:
|
54
|
+
executables: []
|
55
|
+
extensions: []
|
56
|
+
extra_rdoc_files: []
|
57
|
+
files:
|
58
|
+
- HISTORY
|
59
|
+
- LICENSE
|
60
|
+
- MANIFEST
|
61
|
+
- README.rdoc
|
62
|
+
- Rakefile
|
63
|
+
- ext/libxml/extconf.rb
|
64
|
+
- ext/libxml/libxml.c
|
65
|
+
- ext/libxml/libxml_ruby.def
|
66
|
+
- ext/libxml/ruby_libxml.h
|
67
|
+
- ext/libxml/ruby_xml.c
|
68
|
+
- ext/libxml/ruby_xml.h
|
69
|
+
- ext/libxml/ruby_xml_attr.c
|
70
|
+
- ext/libxml/ruby_xml_attr.h
|
71
|
+
- ext/libxml/ruby_xml_attr_decl.c
|
72
|
+
- ext/libxml/ruby_xml_attr_decl.h
|
73
|
+
- ext/libxml/ruby_xml_attributes.c
|
74
|
+
- ext/libxml/ruby_xml_attributes.h
|
75
|
+
- ext/libxml/ruby_xml_cbg.c
|
76
|
+
- ext/libxml/ruby_xml_document.c
|
77
|
+
- ext/libxml/ruby_xml_document.h
|
78
|
+
- ext/libxml/ruby_xml_dtd.c
|
79
|
+
- ext/libxml/ruby_xml_dtd.h
|
80
|
+
- ext/libxml/ruby_xml_encoding.c
|
81
|
+
- ext/libxml/ruby_xml_encoding.h
|
82
|
+
- ext/libxml/ruby_xml_error.c
|
83
|
+
- ext/libxml/ruby_xml_error.h
|
84
|
+
- ext/libxml/ruby_xml_html_parser.c
|
85
|
+
- ext/libxml/ruby_xml_html_parser.h
|
86
|
+
- ext/libxml/ruby_xml_html_parser_context.c
|
87
|
+
- ext/libxml/ruby_xml_html_parser_context.h
|
88
|
+
- ext/libxml/ruby_xml_html_parser_options.c
|
89
|
+
- ext/libxml/ruby_xml_html_parser_options.h
|
90
|
+
- ext/libxml/ruby_xml_input_cbg.c
|
91
|
+
- ext/libxml/ruby_xml_input_cbg.h
|
92
|
+
- ext/libxml/ruby_xml_io.c
|
93
|
+
- ext/libxml/ruby_xml_io.h
|
94
|
+
- ext/libxml/ruby_xml_namespace.c
|
95
|
+
- ext/libxml/ruby_xml_namespace.h
|
96
|
+
- ext/libxml/ruby_xml_namespaces.c
|
97
|
+
- ext/libxml/ruby_xml_namespaces.h
|
98
|
+
- ext/libxml/ruby_xml_node.c
|
99
|
+
- ext/libxml/ruby_xml_node.h
|
100
|
+
- ext/libxml/ruby_xml_parser.c
|
101
|
+
- ext/libxml/ruby_xml_parser.h
|
102
|
+
- ext/libxml/ruby_xml_parser_context.c
|
103
|
+
- ext/libxml/ruby_xml_parser_context.h
|
104
|
+
- ext/libxml/ruby_xml_parser_options.c
|
105
|
+
- ext/libxml/ruby_xml_parser_options.h
|
106
|
+
- ext/libxml/ruby_xml_reader.c
|
107
|
+
- ext/libxml/ruby_xml_reader.h
|
108
|
+
- ext/libxml/ruby_xml_relaxng.c
|
109
|
+
- ext/libxml/ruby_xml_relaxng.h
|
110
|
+
- ext/libxml/ruby_xml_sax2_handler.c
|
111
|
+
- ext/libxml/ruby_xml_sax2_handler.h
|
112
|
+
- ext/libxml/ruby_xml_sax_parser.c
|
113
|
+
- ext/libxml/ruby_xml_sax_parser.h
|
114
|
+
- ext/libxml/ruby_xml_schema.c
|
115
|
+
- ext/libxml/ruby_xml_schema.h
|
116
|
+
- ext/libxml/ruby_xml_schema_attribute.c
|
117
|
+
- ext/libxml/ruby_xml_schema_attribute.h
|
118
|
+
- ext/libxml/ruby_xml_schema_element.c
|
119
|
+
- ext/libxml/ruby_xml_schema_element.h
|
120
|
+
- ext/libxml/ruby_xml_schema_facet.c
|
121
|
+
- ext/libxml/ruby_xml_schema_facet.h
|
122
|
+
- ext/libxml/ruby_xml_schema_type.c
|
123
|
+
- ext/libxml/ruby_xml_schema_type.h
|
124
|
+
- ext/libxml/ruby_xml_version.h
|
125
|
+
- ext/libxml/ruby_xml_writer.c
|
126
|
+
- ext/libxml/ruby_xml_writer.h
|
127
|
+
- ext/libxml/ruby_xml_xinclude.c
|
128
|
+
- ext/libxml/ruby_xml_xinclude.h
|
129
|
+
- ext/libxml/ruby_xml_xpath.c
|
130
|
+
- ext/libxml/ruby_xml_xpath.h
|
131
|
+
- ext/libxml/ruby_xml_xpath_context.c
|
132
|
+
- ext/libxml/ruby_xml_xpath_context.h
|
133
|
+
- ext/libxml/ruby_xml_xpath_expression.c
|
134
|
+
- ext/libxml/ruby_xml_xpath_expression.h
|
135
|
+
- ext/libxml/ruby_xml_xpath_object.c
|
136
|
+
- ext/libxml/ruby_xml_xpath_object.h
|
137
|
+
- ext/libxml/ruby_xml_xpointer.c
|
138
|
+
- ext/libxml/ruby_xml_xpointer.h
|
139
|
+
- ext/vc/libxml_ruby.sln
|
140
|
+
- lib/3.1/libxml_ruby.so
|
141
|
+
- lib/libxml-ruby.rb
|
142
|
+
- lib/libxml.rb
|
143
|
+
- lib/libxml/attr.rb
|
144
|
+
- lib/libxml/attr_decl.rb
|
145
|
+
- lib/libxml/attributes.rb
|
146
|
+
- lib/libxml/document.rb
|
147
|
+
- lib/libxml/error.rb
|
148
|
+
- lib/libxml/hpricot.rb
|
149
|
+
- lib/libxml/html_parser.rb
|
150
|
+
- lib/libxml/namespace.rb
|
151
|
+
- lib/libxml/namespaces.rb
|
152
|
+
- lib/libxml/node.rb
|
153
|
+
- lib/libxml/parser.rb
|
154
|
+
- lib/libxml/sax_callbacks.rb
|
155
|
+
- lib/libxml/sax_parser.rb
|
156
|
+
- lib/libxml/schema.rb
|
157
|
+
- lib/libxml/schema/attribute.rb
|
158
|
+
- lib/libxml/schema/element.rb
|
159
|
+
- lib/libxml/schema/type.rb
|
160
|
+
- lib/libxml/tree.rb
|
161
|
+
- lib/xml.rb
|
162
|
+
- lib/xml/libxml.rb
|
163
|
+
- libxml-ruby.gemspec
|
164
|
+
- script/benchmark/depixelate
|
165
|
+
- script/benchmark/hamlet.xml
|
166
|
+
- script/benchmark/parsecount
|
167
|
+
- script/benchmark/sock_entries.xml
|
168
|
+
- script/benchmark/throughput
|
169
|
+
- script/test
|
170
|
+
- setup.rb
|
171
|
+
- test/c14n/given/doc.dtd
|
172
|
+
- test/c14n/given/example-1.xml
|
173
|
+
- test/c14n/given/example-2.xml
|
174
|
+
- test/c14n/given/example-3.xml
|
175
|
+
- test/c14n/given/example-4.xml
|
176
|
+
- test/c14n/given/example-5.xml
|
177
|
+
- test/c14n/given/example-6.xml
|
178
|
+
- test/c14n/given/example-7.xml
|
179
|
+
- test/c14n/given/example-8.xml
|
180
|
+
- test/c14n/given/example-8.xpath
|
181
|
+
- test/c14n/given/world.txt
|
182
|
+
- test/c14n/result/1-1-without-comments/example-1
|
183
|
+
- test/c14n/result/1-1-without-comments/example-2
|
184
|
+
- test/c14n/result/1-1-without-comments/example-3
|
185
|
+
- test/c14n/result/1-1-without-comments/example-4
|
186
|
+
- test/c14n/result/1-1-without-comments/example-5
|
187
|
+
- test/c14n/result/1-1-without-comments/example-6
|
188
|
+
- test/c14n/result/1-1-without-comments/example-7
|
189
|
+
- test/c14n/result/1-1-without-comments/example-8
|
190
|
+
- test/c14n/result/with-comments/example-1
|
191
|
+
- test/c14n/result/with-comments/example-2
|
192
|
+
- test/c14n/result/with-comments/example-3
|
193
|
+
- test/c14n/result/with-comments/example-4
|
194
|
+
- test/c14n/result/with-comments/example-5
|
195
|
+
- test/c14n/result/with-comments/example-6
|
196
|
+
- test/c14n/result/with-comments/example-7
|
197
|
+
- test/c14n/result/without-comments/example-1
|
198
|
+
- test/c14n/result/without-comments/example-2
|
199
|
+
- test/c14n/result/without-comments/example-3
|
200
|
+
- test/c14n/result/without-comments/example-4
|
201
|
+
- test/c14n/result/without-comments/example-5
|
202
|
+
- test/c14n/result/without-comments/example-6
|
203
|
+
- test/c14n/result/without-comments/example-7
|
204
|
+
- test/model/atom.xml
|
205
|
+
- test/model/bands.iso-8859-1.xml
|
206
|
+
- test/model/bands.utf-8.xml
|
207
|
+
- test/model/bands.xml
|
208
|
+
- test/model/books.xml
|
209
|
+
- test/model/cwm_1_0.xml
|
210
|
+
- test/model/merge_bug_data.xml
|
211
|
+
- test/model/ruby-lang.html
|
212
|
+
- test/model/rubynet.xml
|
213
|
+
- test/model/rubynet_project
|
214
|
+
- test/model/shiporder.rnc
|
215
|
+
- test/model/shiporder.rng
|
216
|
+
- test/model/shiporder.xml
|
217
|
+
- test/model/shiporder.xsd
|
218
|
+
- test/model/soap.xml
|
219
|
+
- test/model/xinclude.xml
|
220
|
+
- test/test_attr.rb
|
221
|
+
- test/test_attr_decl.rb
|
222
|
+
- test/test_attributes.rb
|
223
|
+
- test/test_canonicalize.rb
|
224
|
+
- test/test_deprecated_require.rb
|
225
|
+
- test/test_document.rb
|
226
|
+
- test/test_document_write.rb
|
227
|
+
- test/test_dtd.rb
|
228
|
+
- test/test_encoding.rb
|
229
|
+
- test/test_encoding_sax.rb
|
230
|
+
- test/test_error.rb
|
231
|
+
- test/test_helper.rb
|
232
|
+
- test/test_html_parser.rb
|
233
|
+
- test/test_html_parser_context.rb
|
234
|
+
- test/test_namespace.rb
|
235
|
+
- test/test_namespaces.rb
|
236
|
+
- test/test_node.rb
|
237
|
+
- test/test_node_cdata.rb
|
238
|
+
- test/test_node_comment.rb
|
239
|
+
- test/test_node_copy.rb
|
240
|
+
- test/test_node_edit.rb
|
241
|
+
- test/test_node_pi.rb
|
242
|
+
- test/test_node_text.rb
|
243
|
+
- test/test_node_write.rb
|
244
|
+
- test/test_node_xlink.rb
|
245
|
+
- test/test_parser.rb
|
246
|
+
- test/test_parser_context.rb
|
247
|
+
- test/test_properties.rb
|
248
|
+
- test/test_reader.rb
|
249
|
+
- test/test_relaxng.rb
|
250
|
+
- test/test_sax_parser.rb
|
251
|
+
- test/test_schema.rb
|
252
|
+
- test/test_suite.rb
|
253
|
+
- test/test_traversal.rb
|
254
|
+
- test/test_writer.rb
|
255
|
+
- test/test_xinclude.rb
|
256
|
+
- test/test_xml.rb
|
257
|
+
- test/test_xpath.rb
|
258
|
+
- test/test_xpath_context.rb
|
259
|
+
- test/test_xpath_expression.rb
|
260
|
+
- test/test_xpointer.rb
|
261
|
+
homepage: https://xml4r.github.io/libxml-ruby/
|
262
|
+
licenses:
|
263
|
+
- MIT
|
264
|
+
metadata: {}
|
265
|
+
post_install_message:
|
266
|
+
rdoc_options: []
|
267
|
+
require_paths:
|
268
|
+
- lib
|
269
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
270
|
+
requirements:
|
271
|
+
- - ">="
|
272
|
+
- !ruby/object:Gem::Version
|
273
|
+
version: '2.5'
|
274
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
275
|
+
requirements:
|
276
|
+
- - ">="
|
277
|
+
- !ruby/object:Gem::Version
|
278
|
+
version: '0'
|
279
|
+
requirements: []
|
280
|
+
rubygems_version: 3.3.4
|
281
|
+
signing_key:
|
282
|
+
specification_version: 4
|
283
|
+
summary: Ruby Bindings for LibXML2
|
284
|
+
test_files:
|
285
|
+
- test/test_attr.rb
|
286
|
+
- test/test_attr_decl.rb
|
287
|
+
- test/test_attributes.rb
|
288
|
+
- test/test_canonicalize.rb
|
289
|
+
- test/test_deprecated_require.rb
|
290
|
+
- test/test_document.rb
|
291
|
+
- test/test_document_write.rb
|
292
|
+
- test/test_dtd.rb
|
293
|
+
- test/test_encoding.rb
|
294
|
+
- test/test_encoding_sax.rb
|
295
|
+
- test/test_error.rb
|
296
|
+
- test/test_helper.rb
|
297
|
+
- test/test_html_parser.rb
|
298
|
+
- test/test_html_parser_context.rb
|
299
|
+
- test/test_namespace.rb
|
300
|
+
- test/test_namespaces.rb
|
301
|
+
- test/test_node.rb
|
302
|
+
- test/test_node_cdata.rb
|
303
|
+
- test/test_node_comment.rb
|
304
|
+
- test/test_node_copy.rb
|
305
|
+
- test/test_node_edit.rb
|
306
|
+
- test/test_node_pi.rb
|
307
|
+
- test/test_node_text.rb
|
308
|
+
- test/test_node_write.rb
|
309
|
+
- test/test_node_xlink.rb
|
310
|
+
- test/test_parser.rb
|
311
|
+
- test/test_parser_context.rb
|
312
|
+
- test/test_properties.rb
|
313
|
+
- test/test_reader.rb
|
314
|
+
- test/test_relaxng.rb
|
315
|
+
- test/test_sax_parser.rb
|
316
|
+
- test/test_schema.rb
|
317
|
+
- test/test_suite.rb
|
318
|
+
- test/test_traversal.rb
|
319
|
+
- test/test_writer.rb
|
320
|
+
- test/test_xinclude.rb
|
321
|
+
- test/test_xml.rb
|
322
|
+
- test/test_xpath.rb
|
323
|
+
- test/test_xpath_context.rb
|
324
|
+
- test/test_xpath_expression.rb
|
325
|
+
- test/test_xpointer.rb
|