libxml-ruby 3.0.0-x64-mingw32 → 3.2.2-x64-mingw32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (87) hide show
  1. checksums.yaml +5 -5
  2. data/HISTORY +37 -0
  3. data/MANIFEST +34 -34
  4. data/README.rdoc +65 -36
  5. data/Rakefile +21 -3
  6. data/ext/libxml/extconf.rb +30 -26
  7. data/ext/libxml/ruby_libxml.h +0 -8
  8. data/ext/libxml/ruby_xml.c +40 -0
  9. data/ext/libxml/ruby_xml_document.c +1 -5
  10. data/ext/libxml/ruby_xml_dtd.c +6 -8
  11. data/ext/libxml/ruby_xml_encoding.c +1 -13
  12. data/ext/libxml/ruby_xml_encoding.h +0 -3
  13. data/ext/libxml/ruby_xml_error.c +1 -1
  14. data/ext/libxml/ruby_xml_error.h +1 -1
  15. data/ext/libxml/ruby_xml_io.c +14 -18
  16. data/ext/libxml/ruby_xml_io.h +1 -1
  17. data/ext/libxml/ruby_xml_node.c +16 -17
  18. data/ext/libxml/ruby_xml_parser_context.c +1 -1
  19. data/ext/libxml/ruby_xml_reader.c +7 -2
  20. data/ext/libxml/ruby_xml_schema.c +44 -66
  21. data/ext/libxml/ruby_xml_schema_element.c +15 -14
  22. data/ext/libxml/ruby_xml_schema_type.c +66 -93
  23. data/ext/libxml/ruby_xml_version.h +4 -4
  24. data/ext/libxml/ruby_xml_writer.c +189 -192
  25. data/lib/3.0/libxml_ruby.so +0 -0
  26. data/lib/libxml/schema/element.rb +0 -8
  27. data/lib/libxml/schema/type.rb +0 -8
  28. data/lib/libxml/schema.rb +0 -19
  29. data/lib/libxml-ruby.rb +30 -0
  30. data/lib/libxml.rb +3 -28
  31. data/libxml-ruby.gemspec +5 -4
  32. data/setup.rb +0 -1
  33. data/test/model/cwm_1_0.xml +11336 -0
  34. data/test/{tc_attr.rb → test_attr.rb} +18 -18
  35. data/test/{tc_attr_decl.rb → test_attr_decl.rb} +8 -8
  36. data/test/{tc_attributes.rb → test_attributes.rb} +10 -10
  37. data/test/{tc_canonicalize.rb → test_canonicalize.rb} +35 -39
  38. data/test/test_deprecated_require.rb +12 -0
  39. data/test/{tc_document.rb → test_document.rb} +31 -24
  40. data/test/test_document_write.rb +146 -0
  41. data/test/{tc_dtd.rb → test_dtd.rb} +26 -25
  42. data/test/{tc_encoding.rb → test_encoding.rb} +20 -17
  43. data/test/{tc_encoding_sax.rb → test_encoding_sax.rb} +3 -3
  44. data/test/test_error.rb +178 -0
  45. data/test/test_helper.rb +4 -11
  46. data/test/{tc_html_parser.rb → test_html_parser.rb} +31 -30
  47. data/test/test_html_parser_context.rb +23 -0
  48. data/test/test_namespace.rb +60 -0
  49. data/test/{tc_namespaces.rb → test_namespaces.rb} +29 -38
  50. data/test/{tc_node.rb → test_node.rb} +37 -31
  51. data/test/{tc_node_cdata.rb → test_node_cdata.rb} +10 -10
  52. data/test/{tc_node_comment.rb → test_node_comment.rb} +6 -6
  53. data/test/{tc_node_copy.rb → test_node_copy.rb} +3 -4
  54. data/test/{tc_node_edit.rb → test_node_edit.rb} +20 -21
  55. data/test/{tc_node_pi.rb → test_node_pi.rb} +8 -10
  56. data/test/{tc_node_text.rb → test_node_text.rb} +8 -9
  57. data/test/{tc_node_write.rb → test_node_write.rb} +16 -26
  58. data/test/test_node_xlink.rb +28 -0
  59. data/test/{tc_parser.rb → test_parser.rb} +72 -75
  60. data/test/{tc_parser_context.rb → test_parser_context.rb} +38 -44
  61. data/test/{tc_properties.rb → test_properties.rb} +5 -5
  62. data/test/test_reader.rb +364 -0
  63. data/test/{tc_relaxng.rb → test_relaxng.rb} +11 -11
  64. data/test/{tc_sax_parser.rb → test_sax_parser.rb} +38 -31
  65. data/test/{tc_schema.rb → test_schema.rb} +40 -33
  66. data/test/test_suite.rb +39 -40
  67. data/test/{tc_traversal.rb → test_traversal.rb} +4 -4
  68. data/test/{tc_writer.rb → test_writer.rb} +95 -74
  69. data/test/{tc_xinclude.rb → test_xinclude.rb} +3 -3
  70. data/test/test_xml.rb +263 -0
  71. data/test/{tc_xpath.rb → test_xpath.rb} +25 -25
  72. data/test/{tc_xpath_context.rb → test_xpath_context.rb} +5 -5
  73. data/test/{tc_xpath_expression.rb → test_xpath_expression.rb} +7 -7
  74. data/test/{tc_xpointer.rb → test_xpointer.rb} +15 -15
  75. metadata +92 -106
  76. data/lib/2.4/libxml_ruby.so +0 -0
  77. data/lib/libs/libiconv-2.dll +0 -0
  78. data/lib/libs/libxml2-2.dll +0 -0
  79. data/lib/libs/zlib1.dll +0 -0
  80. data/test/tc_deprecated_require.rb +0 -12
  81. data/test/tc_document_write.rb +0 -195
  82. data/test/tc_error.rb +0 -178
  83. data/test/tc_html_parser_context.rb +0 -23
  84. data/test/tc_namespace.rb +0 -61
  85. data/test/tc_node_xlink.rb +0 -28
  86. data/test/tc_reader.rb +0 -358
  87. data/test/tc_xml.rb +0 -225
@@ -1,11 +1,11 @@
1
1
  # encoding: UTF-8
2
2
 
3
- require './test_helper'
3
+ require_relative './test_helper'
4
4
  require 'tempfile'
5
5
 
6
6
  class TestXPath < Minitest::Test
7
7
  def setup
8
- @doc = XML::Document.file(File.join(File.dirname(__FILE__), 'model/soap.xml'))
8
+ @doc = LibXML::XML::Document.file(File.join(File.dirname(__FILE__), 'model/soap.xml'))
9
9
  end
10
10
 
11
11
  def teardown
@@ -14,14 +14,14 @@ class TestXPath < Minitest::Test
14
14
 
15
15
  def test_doc_find
16
16
  nodes = @doc.find('/soap:Envelope')
17
- assert_instance_of(XML::XPath::Object, nodes)
17
+ assert_instance_of(LibXML::XML::XPath::Object, nodes)
18
18
  assert_equal(1, nodes.length)
19
- assert_equal(nodes.xpath_type, XML::XPath::NODESET)
19
+ assert_equal(nodes.xpath_type, LibXML::XML::XPath::NODESET)
20
20
  end
21
21
 
22
22
  def test_doc_find_first
23
23
  node = @doc.find_first('/soap:Envelope/soap:Body')
24
- assert_instance_of(XML::Node, node)
24
+ assert_instance_of(LibXML::XML::Node, node)
25
25
  end
26
26
 
27
27
  def test_ns
@@ -33,7 +33,7 @@ class TestXPath < Minitest::Test
33
33
  _stress = GC.stress
34
34
  GC.stress = true
35
35
 
36
- doc = XML::Document.string('<foo xmlns="http://bar.com" />')
36
+ doc = LibXML::XML::Document.string('<foo xmlns="http://bar.com" />')
37
37
  node = doc.root
38
38
  # This line segfaults on prior versions of libxml-ruby
39
39
  node.find("namespace::*")
@@ -89,7 +89,7 @@ class TestXPath < Minitest::Test
89
89
 
90
90
  def test_default_ns5
91
91
  # Find all nodes with http://services.somewhere.com namespace
92
- XML::Namespace.new(@doc.root, 'ns', 'http://services.somewhere.com')
92
+ LibXML::XML::Namespace.new(@doc.root, 'ns', 'http://services.somewhere.com')
93
93
  nodes = @doc.find('//ns:*')
94
94
  assert_equal(2, nodes.length)
95
95
  assert_equal('getManufacturerNamesResponse', nodes[0].name)
@@ -105,11 +105,11 @@ class TestXPath < Minitest::Test
105
105
  end
106
106
 
107
107
  def test_register_default_ns
108
- doc = XML::Document.file(File.join(File.dirname(__FILE__), 'model/atom.xml'))
108
+ doc = LibXML::XML::Document.file(File.join(File.dirname(__FILE__), 'model/atom.xml'))
109
109
 
110
110
  # No namespace has been yet defined
111
- assert_raises(XML::Error) do
112
- node = doc.find("atom:title")
111
+ assert_raises(LibXML::XML::Error) do
112
+ doc.find("atom:title")
113
113
  end
114
114
 
115
115
  node = doc.find('atom:title', 'atom:http://www.w3.org/2005/Atom')
@@ -143,7 +143,7 @@ class TestXPath < Minitest::Test
143
143
  end
144
144
 
145
145
  def test_node_no_doc
146
- node = XML::Node.new('header', 'some content')
146
+ node = LibXML::XML::Node.new('header', 'some content')
147
147
  assert_raises(TypeError) do
148
148
  node = node.find_first('/header')
149
149
  end
@@ -157,48 +157,48 @@ class TestXPath < Minitest::Test
157
157
  # to the document's nodes. A segmentation fault then happens.
158
158
 
159
159
  1000.times do
160
- doc = XML::Document.new('1.0')
161
- doc.root = XML::Node.new("header")
160
+ doc = LibXML::XML::Document.new('1.0')
161
+ doc.root = LibXML::XML::Node.new("header")
162
162
 
163
163
  1000.times do
164
- doc.root << XML::Node.new("footer")
164
+ doc.root << LibXML::XML::Node.new("footer")
165
165
  end
166
166
 
167
- nodes = doc.find('/header/footer')
167
+ doc.find('/header/footer')
168
168
  end
169
169
  end
170
170
 
171
171
  # Test that document doesn't get freed before nodes
172
172
  def test_xpath_free
173
- doc = XML::Document.file(File.join(File.dirname(__FILE__), 'model/soap.xml'))
173
+ doc = LibXML::XML::Document.file(File.join(File.dirname(__FILE__), 'model/soap.xml'))
174
174
  nodes = doc.find('//*')
175
175
  GC.start
176
176
  assert_equal('Envelope', nodes.first.name)
177
177
  end
178
178
 
179
179
  def test_xpath_namespace_nodes
180
- doc = XML::Document.string('<feed xmlns="http://www.w3.org/2005/Atom" xmlns:xhtml="http://www.w3.org/1999/xhtml"><entry/></feed>')
180
+ doc = LibXML::XML::Document.string('<feed xmlns="http://www.w3.org/2005/Atom" xmlns:xhtml="http://www.w3.org/1999/xhtml"><entry/></feed>')
181
181
  nodes = doc.find('//atom:entry|namespace::*', :atom => "http://www.w3.org/2005/Atom")
182
182
  assert_equal(4, nodes.length)
183
183
 
184
184
  node = nodes[0]
185
- assert_equal(XML::Node::ELEMENT_NODE, node.node_type)
185
+ assert_equal(LibXML::XML::Node::ELEMENT_NODE, node.node_type)
186
186
 
187
187
  node = nodes[1]
188
- assert_equal(XML::Node::NAMESPACE_DECL, node.node_type)
188
+ assert_equal(LibXML::XML::Node::NAMESPACE_DECL, node.node_type)
189
189
 
190
190
  node = nodes[2]
191
- assert_equal(XML::Node::NAMESPACE_DECL, node.node_type)
191
+ assert_equal(LibXML::XML::Node::NAMESPACE_DECL, node.node_type)
192
192
 
193
193
  node = nodes[3]
194
- assert_equal(XML::Node::NAMESPACE_DECL, node.node_type)
194
+ assert_equal(LibXML::XML::Node::NAMESPACE_DECL, node.node_type)
195
195
  end
196
196
 
197
197
  # Test to make sure we don't get nil on empty results.
198
198
  # This is also to test that we don't segfault due to our C code getting a NULL pointer
199
199
  # and not handling it properly.
200
200
  def test_xpath_empty_result
201
- doc = XML::Document.string('<html><body><p>Welcome to XHTML land!</p></body></html>')
201
+ doc = LibXML::XML::Document.string('<html><body><p>Welcome to XHTML land!</p></body></html>')
202
202
  nodes = doc.find("//object/param[translate(@name, 'ABCDEFGHIJKLMNOPQRSTUVWXYZ', 'abcdefghijklmnopqrstuvwxyz') = 'wmode']")
203
203
  refute_nil nodes
204
204
  end
@@ -207,13 +207,13 @@ class TestXPath < Minitest::Test
207
207
  xml = LibXML::XML::Document.string('<a></a>')
208
208
 
209
209
  # Using the expression twice used to cause a Segmentation Fault
210
- error = assert_raises(XML::Error) do
210
+ error = assert_raises(LibXML::XML::Error) do
211
211
  xml.find('//a/')
212
212
  end
213
213
  assert_equal("Error: Invalid expression.", error.to_s)
214
214
 
215
215
  # Try again - this used to cause a Segmentation Fault
216
- error = assert_raises(XML::Error) do
216
+ error = assert_raises(LibXML::XML::Error) do
217
217
  xml.find('//a/')
218
218
  end
219
219
  assert_equal("Error: Invalid expression.", error.to_s)
@@ -241,4 +241,4 @@ class TestXPath < Minitest::Test
241
241
  assert_equal(1, nodes.length)
242
242
  assert_equal(nodes[0].content, ' my comment ')
243
243
  end
244
- end
244
+ end
@@ -1,6 +1,6 @@
1
1
  # encoding: UTF-8
2
2
 
3
- require './test_helper'
3
+ require_relative './test_helper'
4
4
  require "tempfile"
5
5
 
6
6
  class TestXPathContext < Minitest::Test
@@ -11,8 +11,8 @@ class TestXPathContext < Minitest::Test
11
11
  NS0_URI = 'http://services.somewhere.com'
12
12
 
13
13
  def setup
14
- doc = XML::Document.file(File.join(File.dirname(__FILE__), 'model/soap.xml'))
15
- @context = XML::XPath::Context.new(doc)
14
+ doc = LibXML::XML::Document.file(File.join(File.dirname(__FILE__), 'model/soap.xml'))
15
+ @context = LibXML::XML::XPath::Context.new(doc)
16
16
  end
17
17
 
18
18
  def teardown()
@@ -79,9 +79,9 @@ class TestXPathContext < Minitest::Test
79
79
  end
80
80
 
81
81
  def test_require_doc
82
- doc = XML::Document.file(File.join(File.dirname(__FILE__), 'model/soap.xml'))
82
+ doc = LibXML::XML::Document.file(File.join(File.dirname(__FILE__), 'model/soap.xml'))
83
83
  error = assert_raises(TypeError) do
84
- @context = XML::XPath::Context.new(doc.root)
84
+ @context = LibXML::XML::XPath::Context.new(doc.root)
85
85
  end
86
86
  assert_equal("Supplied argument must be a document or node.", error.to_s)
87
87
  end
@@ -1,11 +1,11 @@
1
1
  # encoding: UTF-8
2
2
 
3
- require './test_helper'
3
+ require_relative './test_helper'
4
4
 
5
5
 
6
6
  class TestXPathExpression < Minitest::Test
7
7
  def setup
8
- xp = XML::Parser.string('<ruby_array uga="booga" foo="bar"><fixnum>one</fixnum><fixnum>two</fixnum></ruby_array>')
8
+ xp = LibXML::XML::Parser.string('<ruby_array uga="booga" foo="bar"><fixnum>one</fixnum><fixnum>two</fixnum></ruby_array>')
9
9
  @doc = xp.parse
10
10
  end
11
11
 
@@ -14,22 +14,22 @@ class TestXPathExpression < Minitest::Test
14
14
  end
15
15
 
16
16
  def test_nodes
17
- expr = XML::XPath::Expression.compile('/ruby_array/fixnum')
17
+ expr = LibXML::XML::XPath::Expression.compile('/ruby_array/fixnum')
18
18
  set = @doc.find(expr)
19
- assert_instance_of(XML::XPath::Object, set)
19
+ assert_instance_of(LibXML::XML::XPath::Object, set)
20
20
  assert_equal(2, set.size)
21
21
  end
22
22
 
23
23
  def test_find_class
24
- expr = XML::XPath::Expression.new('/ruby_array/fixnum')
24
+ expr = LibXML::XML::XPath::Expression.new('/ruby_array/fixnum')
25
25
  set = @doc.find(expr)
26
- assert_instance_of(XML::XPath::Object, set)
26
+ assert_instance_of(LibXML::XML::XPath::Object, set)
27
27
  assert_equal(2, set.size)
28
28
  end
29
29
 
30
30
  def test_find_invalid
31
31
  error = assert_raises(TypeError) do
32
- set = @doc.find(999)
32
+ @doc.find(999)
33
33
  end
34
34
  assert_equal('Argument should be an instance of a String or XPath::Expression',
35
35
  error.to_s)
@@ -1,13 +1,13 @@
1
1
  # encoding: UTF-8
2
- require './test_helper'
2
+ require_relative './test_helper'
3
3
 
4
4
  class TC_XML_XPointer < Minitest::Test
5
5
  def setup()
6
- xp = XML::Parser.string('<!DOCTYPE ra [<!ELEMENT ra (foo+)><!ATTLIST ra id ID #IMPLIED><!ELEMENT foo (#PCDATA)><!ATTLIST foo id ID #IMPLIED>]><ra id="start"><foo id="one">one</foo><foo id="two">two</foo><foo id="three">three</foo></ra>')
6
+ xp = LibXML::XML::Parser.string('<!DOCTYPE ra [<!ELEMENT ra (foo+)><!ATTLIST ra id ID #IMPLIED><!ELEMENT foo (#PCDATA)><!ATTLIST foo id ID #IMPLIED>]><ra id="start"><foo id="one">one</foo><foo id="two">two</foo><foo id="three">three</foo></ra>')
7
7
  @doc = xp.parse
8
- assert_instance_of(XML::Document, @doc)
8
+ assert_instance_of(LibXML::XML::Document, @doc)
9
9
  @root = @doc.root
10
- assert_instance_of(XML::Node, @root)
10
+ assert_instance_of(LibXML::XML::Node, @root)
11
11
  end
12
12
 
13
13
  def teardown()
@@ -18,20 +18,20 @@ class TC_XML_XPointer < Minitest::Test
18
18
 
19
19
  def test_libxml_xpointer_id
20
20
  xptr = @root.pointer('xpointer(id("two"))')
21
- assert_instance_of(XML::XPath::Object, xptr)
21
+ assert_instance_of(LibXML::XML::XPath::Object, xptr)
22
22
  xptr.each do |node|
23
23
  # It seems from the spec that the pointer should
24
24
  # be the whole node, rather than just the ID attr.
25
25
  assert_equal('two', node.content)
26
- assert_instance_of(XML::Node, node)
26
+ assert_instance_of(LibXML::XML::Node, node)
27
27
  assert_equal('two', node['id'])
28
28
  end
29
29
 
30
30
  # FIXME: Not sure at all about this kind of range
31
31
  if ENV['NOTWORKING']
32
32
  @xptr = @root.pointer('xpointer(id("two")) xpointer(id("three"))')
33
- assert_instance_of(XML::XPath, @xptr)
34
- assert_instance_of(XML::Node::Set, @xptr.set)
33
+ assert_instance_of(LibXML::XML::XPath, @xptr)
34
+ assert_instance_of(LibXML::XML::Node::Set, @xptr.set)
35
35
  assert_equal(2, @xptr.set.length)
36
36
  for n in @xptr.set
37
37
  assert_match(/two|three/, n.to_s)
@@ -45,13 +45,13 @@ class TC_XML_XPointer < Minitest::Test
45
45
  nstart = nend = nil
46
46
  @xptr = @root.pointer('xpointer(id("one"))').set
47
47
  @xptr.each{|n| nstart = n}
48
- assert_instance_of(XML::Node, nstart)
48
+ assert_instance_of(LibXML::XML::Node, nstart)
49
49
  @xptr = @root.pointer('xpointer(id("three"))').set
50
50
  @xptr.each{|n| nend = n}
51
- assert_instance_of(XML::Node, nend)
52
- range = XML::XPointer.range(nstart, nend)
53
- assert_instance_of(XML::XPath, range)
54
- assert_instance_of(XML::Node::Set, range.set)
51
+ assert_instance_of(LibXML::XML::Node, nend)
52
+ range = LibXML::XML::XPointer.range(nstart, nend)
53
+ assert_instance_of(LibXML::XML::XPath, range)
54
+ assert_instance_of(LibXML::XML::Node::Set, range.set)
55
55
 
56
56
  for n in range.set
57
57
  assert_match(/one|two|three/, n.to_s)
@@ -62,9 +62,9 @@ class TC_XML_XPointer < Minitest::Test
62
62
 
63
63
  # def test_libxml_xpointer_start_point()
64
64
  # @xptr = @root.pointer('xpointer(start-point("one"))')
65
- # assert_instance_of(XML::XPath, @xptr)
65
+ # assert_instance_of(LibXML::XML::XPath, @xptr)
66
66
  # set = @xptr.set
67
- # assert_instance_of(XML::Node::Set, set)
67
+ # assert_instance_of(LibXML::XML::Node::Set, set)
68
68
  # for n in set
69
69
  # assert_match(/one|two|three/, n.to_s)
70
70
  # end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: libxml-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.0
4
+ version: 3.2.2
5
5
  platform: x64-mingw32
6
6
  authors:
7
7
  - Ross Bamform
@@ -11,25 +11,11 @@ authors:
11
11
  - Anurag Priyam
12
12
  - Charlie Savage
13
13
  - Ryan Johnson
14
- autorequire:
14
+ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
- date: 2017-02-10 00:00:00.000000000 Z
17
+ date: 2022-01-16 00:00:00.000000000 Z
18
18
  dependencies:
19
- - !ruby/object:Gem::Dependency
20
- name: hanna_guado
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
19
  - !ruby/object:Gem::Dependency
34
20
  name: rake-compiler
35
21
  requirement: !ruby/object:Gem::Requirement
@@ -64,7 +50,7 @@ description: |2
64
50
  Libxml-ruby's primary advantage over REXML is performance - if speed
65
51
  is your need, these are good libraries to consider, as demonstrated
66
52
  by the informal benchmark below.
67
- email:
53
+ email:
68
54
  executables: []
69
55
  extensions: []
70
56
  extra_rdoc_files: []
@@ -151,10 +137,8 @@ files:
151
137
  - ext/libxml/ruby_xml_xpointer.c
152
138
  - ext/libxml/ruby_xml_xpointer.h
153
139
  - ext/vc/libxml_ruby.sln
154
- - lib/2.4/libxml_ruby.so
155
- - lib/libs/libiconv-2.dll
156
- - lib/libs/libxml2-2.dll
157
- - lib/libs/zlib1.dll
140
+ - lib/3.0/libxml_ruby.so
141
+ - lib/libxml-ruby.rb
158
142
  - lib/libxml.rb
159
143
  - lib/libxml/attr.rb
160
144
  - lib/libxml/attr_decl.rb
@@ -222,6 +206,7 @@ files:
222
206
  - test/model/bands.utf-8.xml
223
207
  - test/model/bands.xml
224
208
  - test/model/books.xml
209
+ - test/model/cwm_1_0.xml
225
210
  - test/model/merge_bug_data.xml
226
211
  - test/model/ruby-lang.html
227
212
  - test/model/rubynet.xml
@@ -232,52 +217,52 @@ files:
232
217
  - test/model/shiporder.xsd
233
218
  - test/model/soap.xml
234
219
  - test/model/xinclude.xml
235
- - test/tc_attr.rb
236
- - test/tc_attr_decl.rb
237
- - test/tc_attributes.rb
238
- - test/tc_canonicalize.rb
239
- - test/tc_deprecated_require.rb
240
- - test/tc_document.rb
241
- - test/tc_document_write.rb
242
- - test/tc_dtd.rb
243
- - test/tc_encoding.rb
244
- - test/tc_encoding_sax.rb
245
- - test/tc_error.rb
246
- - test/tc_html_parser.rb
247
- - test/tc_html_parser_context.rb
248
- - test/tc_namespace.rb
249
- - test/tc_namespaces.rb
250
- - test/tc_node.rb
251
- - test/tc_node_cdata.rb
252
- - test/tc_node_comment.rb
253
- - test/tc_node_copy.rb
254
- - test/tc_node_edit.rb
255
- - test/tc_node_pi.rb
256
- - test/tc_node_text.rb
257
- - test/tc_node_write.rb
258
- - test/tc_node_xlink.rb
259
- - test/tc_parser.rb
260
- - test/tc_parser_context.rb
261
- - test/tc_properties.rb
262
- - test/tc_reader.rb
263
- - test/tc_relaxng.rb
264
- - test/tc_sax_parser.rb
265
- - test/tc_schema.rb
266
- - test/tc_traversal.rb
267
- - test/tc_writer.rb
268
- - test/tc_xinclude.rb
269
- - test/tc_xml.rb
270
- - test/tc_xpath.rb
271
- - test/tc_xpath_context.rb
272
- - test/tc_xpath_expression.rb
273
- - test/tc_xpointer.rb
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
274
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
275
252
  - test/test_suite.rb
276
- homepage: http://xml4r.github.com/libxml-ruby
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/
277
262
  licenses:
278
263
  - MIT
279
264
  metadata: {}
280
- post_install_message:
265
+ post_install_message:
281
266
  rdoc_options: []
282
267
  require_paths:
283
268
  - lib
@@ -285,55 +270,56 @@ required_ruby_version: !ruby/object:Gem::Requirement
285
270
  requirements:
286
271
  - - ">="
287
272
  - !ruby/object:Gem::Version
288
- version: 1.8.6
273
+ version: '2.5'
289
274
  required_rubygems_version: !ruby/object:Gem::Requirement
290
275
  requirements:
291
276
  - - ">="
292
277
  - !ruby/object:Gem::Version
293
278
  version: '0'
294
279
  requirements: []
295
- rubyforge_project:
296
- rubygems_version: 2.6.8
297
- signing_key:
280
+ rubygems_version: 3.3.4
281
+ signing_key:
298
282
  specification_version: 4
299
283
  summary: Ruby Bindings for LibXML2
300
284
  test_files:
301
- - test/tc_attr.rb
302
- - test/tc_attributes.rb
303
- - test/tc_attr_decl.rb
304
- - test/tc_canonicalize.rb
305
- - test/tc_deprecated_require.rb
306
- - test/tc_document.rb
307
- - test/tc_document_write.rb
308
- - test/tc_dtd.rb
309
- - test/tc_encoding.rb
310
- - test/tc_encoding_sax.rb
311
- - test/tc_error.rb
312
- - test/tc_html_parser.rb
313
- - test/tc_html_parser_context.rb
314
- - test/tc_namespace.rb
315
- - test/tc_namespaces.rb
316
- - test/tc_node.rb
317
- - test/tc_node_cdata.rb
318
- - test/tc_node_comment.rb
319
- - test/tc_node_copy.rb
320
- - test/tc_node_edit.rb
321
- - test/tc_node_pi.rb
322
- - test/tc_node_text.rb
323
- - test/tc_node_write.rb
324
- - test/tc_node_xlink.rb
325
- - test/tc_parser.rb
326
- - test/tc_parser_context.rb
327
- - test/tc_properties.rb
328
- - test/tc_reader.rb
329
- - test/tc_relaxng.rb
330
- - test/tc_sax_parser.rb
331
- - test/tc_schema.rb
332
- - test/tc_traversal.rb
333
- - test/tc_writer.rb
334
- - test/tc_xinclude.rb
335
- - test/tc_xml.rb
336
- - test/tc_xpath.rb
337
- - test/tc_xpath_context.rb
338
- - test/tc_xpath_expression.rb
339
- - test/tc_xpointer.rb
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
Binary file
Binary file
Binary file
data/lib/libs/zlib1.dll DELETED
Binary file
@@ -1,12 +0,0 @@
1
- # encoding: UTF-8
2
-
3
- require 'xml/libxml'
4
-
5
- class TestDeprecatedRequire < Minitest::Test
6
- def test_basic
7
- xp = XML::Parser.string('<ruby_array uga="booga" foo="bar"><fixnum>one</fixnum><fixnum>two</fixnum></ruby_array>')
8
- assert_instance_of(XML::Parser, xp)
9
- @doc = xp.parse
10
- assert_instance_of(XML::Document, @doc)
11
- end
12
- end