libxml-ruby-r19mingw 1.1.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (163) hide show
  1. data/CHANGES +481 -0
  2. data/LICENSE +22 -0
  3. data/README +161 -0
  4. data/Rakefile +182 -0
  5. data/doc/css/normal.css +182 -0
  6. data/doc/img/raze-tiny.png +0 -0
  7. data/doc/img/red-cube.jpg +0 -0
  8. data/doc/img/xml-ruby.png +0 -0
  9. data/doc/index.xml +43 -0
  10. data/doc/install.xml +77 -0
  11. data/doc/layout.rhtml +38 -0
  12. data/doc/layout.xsl +67 -0
  13. data/doc/license.xml +32 -0
  14. data/doc/log/changelog.xml +1324 -0
  15. data/doc/log/changelog.xsl +42 -0
  16. data/ext/libxml/Makefile +187 -0
  17. data/ext/libxml/extconf.h +4 -0
  18. data/ext/libxml/extconf.rb +122 -0
  19. data/ext/libxml/libxml.c +77 -0
  20. data/ext/libxml/mkmf.log +880 -0
  21. data/ext/libxml/ruby_libxml.h +93 -0
  22. data/ext/libxml/ruby_xml.c +893 -0
  23. data/ext/libxml/ruby_xml.h +10 -0
  24. data/ext/libxml/ruby_xml_attr.c +352 -0
  25. data/ext/libxml/ruby_xml_attr.h +14 -0
  26. data/ext/libxml/ruby_xml_attr_decl.c +171 -0
  27. data/ext/libxml/ruby_xml_attr_decl.h +13 -0
  28. data/ext/libxml/ruby_xml_attributes.c +277 -0
  29. data/ext/libxml/ruby_xml_attributes.h +17 -0
  30. data/ext/libxml/ruby_xml_cbg.c +86 -0
  31. data/ext/libxml/ruby_xml_document.c +936 -0
  32. data/ext/libxml/ruby_xml_document.h +17 -0
  33. data/ext/libxml/ruby_xml_dtd.c +257 -0
  34. data/ext/libxml/ruby_xml_dtd.h +9 -0
  35. data/ext/libxml/ruby_xml_encoding.c +134 -0
  36. data/ext/libxml/ruby_xml_encoding.h +12 -0
  37. data/ext/libxml/ruby_xml_error.c +1004 -0
  38. data/ext/libxml/ruby_xml_error.h +14 -0
  39. data/ext/libxml/ruby_xml_html_parser.c +92 -0
  40. data/ext/libxml/ruby_xml_html_parser.h +12 -0
  41. data/ext/libxml/ruby_xml_html_parser_context.c +308 -0
  42. data/ext/libxml/ruby_xml_html_parser_context.h +12 -0
  43. data/ext/libxml/ruby_xml_html_parser_options.c +40 -0
  44. data/ext/libxml/ruby_xml_html_parser_options.h +12 -0
  45. data/ext/libxml/ruby_xml_input_cbg.c +191 -0
  46. data/ext/libxml/ruby_xml_input_cbg.h +20 -0
  47. data/ext/libxml/ruby_xml_io.c +30 -0
  48. data/ext/libxml/ruby_xml_io.h +9 -0
  49. data/ext/libxml/ruby_xml_namespace.c +170 -0
  50. data/ext/libxml/ruby_xml_namespace.h +12 -0
  51. data/ext/libxml/ruby_xml_namespaces.c +295 -0
  52. data/ext/libxml/ruby_xml_namespaces.h +11 -0
  53. data/ext/libxml/ruby_xml_node.c +1386 -0
  54. data/ext/libxml/ruby_xml_node.h +13 -0
  55. data/ext/libxml/ruby_xml_parser.c +94 -0
  56. data/ext/libxml/ruby_xml_parser.h +14 -0
  57. data/ext/libxml/ruby_xml_parser_context.c +982 -0
  58. data/ext/libxml/ruby_xml_parser_context.h +12 -0
  59. data/ext/libxml/ruby_xml_parser_options.c +68 -0
  60. data/ext/libxml/ruby_xml_parser_options.h +14 -0
  61. data/ext/libxml/ruby_xml_reader.c +1002 -0
  62. data/ext/libxml/ruby_xml_reader.h +14 -0
  63. data/ext/libxml/ruby_xml_relaxng.c +111 -0
  64. data/ext/libxml/ruby_xml_relaxng.h +10 -0
  65. data/ext/libxml/ruby_xml_sax2_handler.c +322 -0
  66. data/ext/libxml/ruby_xml_sax2_handler.h +12 -0
  67. data/ext/libxml/ruby_xml_sax_parser.c +137 -0
  68. data/ext/libxml/ruby_xml_sax_parser.h +12 -0
  69. data/ext/libxml/ruby_xml_schema.c +159 -0
  70. data/ext/libxml/ruby_xml_schema.h +11 -0
  71. data/ext/libxml/ruby_xml_version.h +9 -0
  72. data/ext/libxml/ruby_xml_xinclude.c +18 -0
  73. data/ext/libxml/ruby_xml_xinclude.h +13 -0
  74. data/ext/libxml/ruby_xml_xpath.c +107 -0
  75. data/ext/libxml/ruby_xml_xpath.h +12 -0
  76. data/ext/libxml/ruby_xml_xpath_context.c +387 -0
  77. data/ext/libxml/ruby_xml_xpath_context.h +11 -0
  78. data/ext/libxml/ruby_xml_xpath_expression.c +83 -0
  79. data/ext/libxml/ruby_xml_xpath_expression.h +12 -0
  80. data/ext/libxml/ruby_xml_xpath_object.c +336 -0
  81. data/ext/libxml/ruby_xml_xpath_object.h +19 -0
  82. data/ext/libxml/ruby_xml_xpointer.c +101 -0
  83. data/ext/libxml/ruby_xml_xpointer.h +13 -0
  84. data/ext/mingw/Rakefile +34 -0
  85. data/ext/mingw/build.rake +41 -0
  86. data/ext/vc/libxml_ruby.sln +26 -0
  87. data/lib/libxml.rb +30 -0
  88. data/lib/libxml/attr.rb +111 -0
  89. data/lib/libxml/attr_decl.rb +78 -0
  90. data/lib/libxml/attributes.rb +12 -0
  91. data/lib/libxml/document.rb +190 -0
  92. data/lib/libxml/error.rb +88 -0
  93. data/lib/libxml/hpricot.rb +76 -0
  94. data/lib/libxml/html_parser.rb +94 -0
  95. data/lib/libxml/namespace.rb +60 -0
  96. data/lib/libxml/namespaces.rb +36 -0
  97. data/lib/libxml/node.rb +385 -0
  98. data/lib/libxml/ns.rb +20 -0
  99. data/lib/libxml/parser.rb +365 -0
  100. data/lib/libxml/properties.rb +21 -0
  101. data/lib/libxml/reader.rb +27 -0
  102. data/lib/libxml/sax_callbacks.rb +178 -0
  103. data/lib/libxml/sax_parser.rb +56 -0
  104. data/lib/libxml/tree.rb +27 -0
  105. data/lib/libxml/xpath_object.rb +14 -0
  106. data/lib/xml.rb +14 -0
  107. data/lib/xml/libxml.rb +8 -0
  108. data/setup.rb +1585 -0
  109. data/test/etc_doc_to_s.rb +19 -0
  110. data/test/ets_doc_file.rb +15 -0
  111. data/test/ets_doc_to_s.rb +21 -0
  112. data/test/ets_gpx.rb +26 -0
  113. data/test/ets_node_gc.rb +21 -0
  114. data/test/ets_test.xml +2 -0
  115. data/test/ets_tsr.rb +9 -0
  116. data/test/model/atom.xml +13 -0
  117. data/test/model/bands.xml +5 -0
  118. data/test/model/books.xml +146 -0
  119. data/test/model/merge_bug_data.xml +58 -0
  120. data/test/model/ruby-lang.html +238 -0
  121. data/test/model/rubynet.xml +79 -0
  122. data/test/model/rubynet_project +1 -0
  123. data/test/model/shiporder.rnc +28 -0
  124. data/test/model/shiporder.rng +86 -0
  125. data/test/model/shiporder.xml +23 -0
  126. data/test/model/shiporder.xsd +31 -0
  127. data/test/model/soap.xml +27 -0
  128. data/test/model/xinclude.xml +5 -0
  129. data/test/tc_attr.rb +170 -0
  130. data/test/tc_attr_decl.rb +131 -0
  131. data/test/tc_attributes.rb +133 -0
  132. data/test/tc_deprecated_require.rb +11 -0
  133. data/test/tc_document.rb +113 -0
  134. data/test/tc_document_write.rb +118 -0
  135. data/test/tc_dtd.rb +123 -0
  136. data/test/tc_error.rb +136 -0
  137. data/test/tc_html_parser.rb +138 -0
  138. data/test/tc_namespace.rb +59 -0
  139. data/test/tc_namespaces.rb +174 -0
  140. data/test/tc_node.rb +181 -0
  141. data/test/tc_node_cdata.rb +49 -0
  142. data/test/tc_node_comment.rb +30 -0
  143. data/test/tc_node_copy.rb +40 -0
  144. data/test/tc_node_edit.rb +158 -0
  145. data/test/tc_node_text.rb +69 -0
  146. data/test/tc_node_write.rb +83 -0
  147. data/test/tc_node_xlink.rb +26 -0
  148. data/test/tc_parser.rb +330 -0
  149. data/test/tc_parser_context.rb +186 -0
  150. data/test/tc_properties.rb +36 -0
  151. data/test/tc_reader.rb +284 -0
  152. data/test/tc_relaxng.rb +51 -0
  153. data/test/tc_sax_parser.rb +274 -0
  154. data/test/tc_schema.rb +51 -0
  155. data/test/tc_traversal.rb +220 -0
  156. data/test/tc_xinclude.rb +19 -0
  157. data/test/tc_xml.rb +224 -0
  158. data/test/tc_xpath.rb +193 -0
  159. data/test/tc_xpath_context.rb +78 -0
  160. data/test/tc_xpath_expression.rb +35 -0
  161. data/test/tc_xpointer.rb +72 -0
  162. data/test/test_suite.rb +33 -0
  163. metadata +260 -0
@@ -0,0 +1,35 @@
1
+ require "xml"
2
+ require 'test/unit'
3
+
4
+ class TestXPathExpression < Test::Unit::TestCase
5
+ def setup
6
+ xp = XML::Parser.string('<ruby_array uga="booga" foo="bar"><fixnum>one</fixnum><fixnum>two</fixnum></ruby_array>')
7
+ @doc = xp.parse
8
+ end
9
+
10
+ def teardown
11
+ @doc = nil
12
+ end
13
+
14
+ def test_nodes
15
+ expr = XML::XPath::Expression.compile('/ruby_array/fixnum')
16
+ set = @doc.find(expr)
17
+ assert_instance_of(XML::XPath::Object, set)
18
+ assert_equal(2, set.size)
19
+ end
20
+
21
+ def test_find_class
22
+ expr = XML::XPath::Expression.new('/ruby_array/fixnum')
23
+ set = @doc.find(expr)
24
+ assert_instance_of(XML::XPath::Object, set)
25
+ assert_equal(2, set.size)
26
+ end
27
+
28
+ def test_find_invalid
29
+ error = assert_raise(TypeError) do
30
+ set = @doc.find(999)
31
+ end
32
+ assert_equal('Argument should be an intance of a String or XPath::Expression',
33
+ error.to_s)
34
+ end
35
+ end
@@ -0,0 +1,72 @@
1
+ require 'xml'
2
+ require "test/unit"
3
+
4
+ class TC_XML_XPointer < Test::Unit::TestCase
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>')
7
+ @doc = xp.parse
8
+ assert_instance_of(XML::Document, @doc)
9
+ @root = @doc.root
10
+ assert_instance_of(XML::Node, @root)
11
+ end
12
+
13
+ def teardown()
14
+ @doc = nil
15
+ @root = nil
16
+ @xptr = nil
17
+ end
18
+
19
+ def test_libxml_xpointer_id
20
+ xptr = @root.pointer('xpointer(id("two"))')
21
+ assert_instance_of(XML::XPath::Object, xptr)
22
+ xptr.each do |node|
23
+ # It seems from the spec that the pointer should
24
+ # be the whole node, rather than just the ID attr.
25
+ assert_equal('two', node.content)
26
+ assert_instance_of(XML::Node, node)
27
+ assert_equal('two', node['id'])
28
+ end
29
+
30
+ # FIXME: Not sure at all about this kind of range
31
+ if ENV['NOTWORKING']
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)
35
+ assert_equal(2, @xptr.set.length)
36
+ for n in @xptr.set
37
+ assert_match(/two|three/, n.to_s)
38
+ end
39
+ end
40
+ end
41
+
42
+ # FIXME: There is a bug in these ranges...
43
+ if ENV['NOTWORKING']
44
+ def test_libxml_xpointer_range()
45
+ nstart = nend = nil
46
+ @xptr = @root.pointer('xpointer(id("one"))').set
47
+ @xptr.each{|n| nstart = n}
48
+ assert_instance_of(XML::Node, nstart)
49
+ @xptr = @root.pointer('xpointer(id("three"))').set
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)
55
+
56
+ for n in range.set
57
+ assert_match(/one|two|three/, n.to_s)
58
+ end
59
+ assert_equal(3, range.set.length)
60
+ end
61
+ end
62
+
63
+ # def test_libxml_xpointer_start_point()
64
+ # @xptr = @root.pointer('xpointer(start-point("one"))')
65
+ # assert_instance_of(XML::XPath, @xptr)
66
+ # set = @xptr.set
67
+ # assert_instance_of(XML::Node::Set, set)
68
+ # for n in set
69
+ # assert_match(/one|two|three/, n.to_s)
70
+ # end
71
+ # end
72
+ end
@@ -0,0 +1,33 @@
1
+ require 'tc_xml'
2
+ require 'tc_attributes'
3
+ require 'tc_attr'
4
+ require 'tc_attr_decl'
5
+ require 'tc_document'
6
+ require 'tc_document_write'
7
+ require 'tc_dtd'
8
+ require 'tc_html_parser'
9
+ require 'tc_namespaces'
10
+ require 'tc_namespace'
11
+ require 'tc_node'
12
+ require 'tc_node_cdata'
13
+ require 'tc_node_comment'
14
+ require 'tc_node_copy'
15
+ require 'tc_node_edit'
16
+ require 'tc_node_text'
17
+ require 'tc_node_write'
18
+ require 'tc_node_xlink'
19
+ require 'tc_parser'
20
+ require 'tc_parser_context'
21
+ require 'tc_reader'
22
+ require 'tc_relaxng'
23
+ require 'tc_sax_parser'
24
+ require 'tc_schema'
25
+ require 'tc_traversal'
26
+ require 'tc_xinclude'
27
+ require 'tc_xpath'
28
+ require 'tc_xpath_expression'
29
+ require 'tc_xpointer'
30
+
31
+ # Compatibility
32
+ require 'tc_properties'
33
+ require 'tc_deprecated_require'
metadata ADDED
@@ -0,0 +1,260 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: libxml-ruby-r19mingw
3
+ version: !ruby/object:Gem::Version
4
+ prerelease: false
5
+ segments:
6
+ - 1
7
+ - 1
8
+ - 4
9
+ version: 1.1.4
10
+ platform: ruby
11
+ authors:
12
+ - Charlie Savage
13
+ autorequire:
14
+ bindir: bin
15
+ cert_chain: []
16
+
17
+ date: 2010-10-20 00:00:00 -04:00
18
+ default_executable:
19
+ dependencies: []
20
+
21
+ description: " The Libxml-Ruby project provides Ruby language bindings for the GNOME\n Libxml2 XML toolkit. It is free software, released under the MIT License.\n Libxml-ruby's primary advantage over REXML is performance - if speed \n is your need, these are good libraries to consider, as demonstrated\n by the informal benchmark below.\n"
22
+ email: libxml-devel@rubyforge.org
23
+ executables: []
24
+
25
+ extensions:
26
+ - ext/libxml/extconf.rb
27
+ extra_rdoc_files: []
28
+
29
+ files:
30
+ - Rakefile
31
+ - CHANGES
32
+ - LICENSE
33
+ - README
34
+ - setup.rb
35
+ - doc/css/normal.css
36
+ - doc/img/raze-tiny.png
37
+ - doc/img/red-cube.jpg
38
+ - doc/img/xml-ruby.png
39
+ - doc/index.xml
40
+ - doc/install.xml
41
+ - doc/layout.rhtml
42
+ - doc/layout.xsl
43
+ - doc/license.xml
44
+ - doc/log/changelog.xml
45
+ - doc/log/changelog.xsl
46
+ - ext/libxml/extconf.h
47
+ - ext/libxml/extconf.rb
48
+ - ext/libxml/libxml.c
49
+ - ext/libxml/Makefile
50
+ - ext/libxml/mkmf.log
51
+ - ext/libxml/ruby_libxml.h
52
+ - ext/libxml/ruby_xml.c
53
+ - ext/libxml/ruby_xml.h
54
+ - ext/libxml/ruby_xml_attr.c
55
+ - ext/libxml/ruby_xml_attr.h
56
+ - ext/libxml/ruby_xml_attributes.c
57
+ - ext/libxml/ruby_xml_attributes.h
58
+ - ext/libxml/ruby_xml_attr_decl.c
59
+ - ext/libxml/ruby_xml_attr_decl.h
60
+ - ext/libxml/ruby_xml_cbg.c
61
+ - ext/libxml/ruby_xml_document.c
62
+ - ext/libxml/ruby_xml_document.h
63
+ - ext/libxml/ruby_xml_dtd.c
64
+ - ext/libxml/ruby_xml_dtd.h
65
+ - ext/libxml/ruby_xml_encoding.c
66
+ - ext/libxml/ruby_xml_encoding.h
67
+ - ext/libxml/ruby_xml_error.c
68
+ - ext/libxml/ruby_xml_error.h
69
+ - ext/libxml/ruby_xml_html_parser.c
70
+ - ext/libxml/ruby_xml_html_parser.h
71
+ - ext/libxml/ruby_xml_html_parser_context.c
72
+ - ext/libxml/ruby_xml_html_parser_context.h
73
+ - ext/libxml/ruby_xml_html_parser_options.c
74
+ - ext/libxml/ruby_xml_html_parser_options.h
75
+ - ext/libxml/ruby_xml_input_cbg.c
76
+ - ext/libxml/ruby_xml_input_cbg.h
77
+ - ext/libxml/ruby_xml_io.c
78
+ - ext/libxml/ruby_xml_io.h
79
+ - ext/libxml/ruby_xml_namespace.c
80
+ - ext/libxml/ruby_xml_namespace.h
81
+ - ext/libxml/ruby_xml_namespaces.c
82
+ - ext/libxml/ruby_xml_namespaces.h
83
+ - ext/libxml/ruby_xml_node.c
84
+ - ext/libxml/ruby_xml_node.h
85
+ - ext/libxml/ruby_xml_parser.c
86
+ - ext/libxml/ruby_xml_parser.h
87
+ - ext/libxml/ruby_xml_parser_context.c
88
+ - ext/libxml/ruby_xml_parser_context.h
89
+ - ext/libxml/ruby_xml_parser_options.c
90
+ - ext/libxml/ruby_xml_parser_options.h
91
+ - ext/libxml/ruby_xml_reader.c
92
+ - ext/libxml/ruby_xml_reader.h
93
+ - ext/libxml/ruby_xml_relaxng.c
94
+ - ext/libxml/ruby_xml_relaxng.h
95
+ - ext/libxml/ruby_xml_sax2_handler.c
96
+ - ext/libxml/ruby_xml_sax2_handler.h
97
+ - ext/libxml/ruby_xml_sax_parser.c
98
+ - ext/libxml/ruby_xml_sax_parser.h
99
+ - ext/libxml/ruby_xml_schema.c
100
+ - ext/libxml/ruby_xml_schema.h
101
+ - ext/libxml/ruby_xml_version.h
102
+ - ext/libxml/ruby_xml_xinclude.c
103
+ - ext/libxml/ruby_xml_xinclude.h
104
+ - ext/libxml/ruby_xml_xpath.c
105
+ - ext/libxml/ruby_xml_xpath.h
106
+ - ext/libxml/ruby_xml_xpath_context.c
107
+ - ext/libxml/ruby_xml_xpath_context.h
108
+ - ext/libxml/ruby_xml_xpath_expression.c
109
+ - ext/libxml/ruby_xml_xpath_expression.h
110
+ - ext/libxml/ruby_xml_xpath_object.c
111
+ - ext/libxml/ruby_xml_xpath_object.h
112
+ - ext/libxml/ruby_xml_xpointer.c
113
+ - ext/libxml/ruby_xml_xpointer.h
114
+ - ext/mingw/Rakefile
115
+ - ext/mingw/build.rake
116
+ - ext/vc/libxml_ruby.sln
117
+ - lib/libxml/attr.rb
118
+ - lib/libxml/attributes.rb
119
+ - lib/libxml/attr_decl.rb
120
+ - lib/libxml/document.rb
121
+ - lib/libxml/error.rb
122
+ - lib/libxml/hpricot.rb
123
+ - lib/libxml/html_parser.rb
124
+ - lib/libxml/namespace.rb
125
+ - lib/libxml/namespaces.rb
126
+ - lib/libxml/node.rb
127
+ - lib/libxml/ns.rb
128
+ - lib/libxml/parser.rb
129
+ - lib/libxml/properties.rb
130
+ - lib/libxml/reader.rb
131
+ - lib/libxml/sax_callbacks.rb
132
+ - lib/libxml/sax_parser.rb
133
+ - lib/libxml/tree.rb
134
+ - lib/libxml/xpath_object.rb
135
+ - lib/libxml.rb
136
+ - lib/xml/libxml.rb
137
+ - lib/xml.rb
138
+ - test/etc_doc_to_s.rb
139
+ - test/ets_doc_file.rb
140
+ - test/ets_doc_to_s.rb
141
+ - test/ets_gpx.rb
142
+ - test/ets_node_gc.rb
143
+ - test/ets_test.xml
144
+ - test/ets_tsr.rb
145
+ - test/model/atom.xml
146
+ - test/model/bands.xml
147
+ - test/model/books.xml
148
+ - test/model/merge_bug_data.xml
149
+ - test/model/ruby-lang.html
150
+ - test/model/rubynet.xml
151
+ - test/model/rubynet_project
152
+ - test/model/shiporder.rnc
153
+ - test/model/shiporder.rng
154
+ - test/model/shiporder.xml
155
+ - test/model/shiporder.xsd
156
+ - test/model/soap.xml
157
+ - test/model/xinclude.xml
158
+ - test/tc_attr.rb
159
+ - test/tc_attributes.rb
160
+ - test/tc_attr_decl.rb
161
+ - test/tc_deprecated_require.rb
162
+ - test/tc_document.rb
163
+ - test/tc_document_write.rb
164
+ - test/tc_dtd.rb
165
+ - test/tc_error.rb
166
+ - test/tc_html_parser.rb
167
+ - test/tc_namespace.rb
168
+ - test/tc_namespaces.rb
169
+ - test/tc_node.rb
170
+ - test/tc_node_cdata.rb
171
+ - test/tc_node_comment.rb
172
+ - test/tc_node_copy.rb
173
+ - test/tc_node_edit.rb
174
+ - test/tc_node_text.rb
175
+ - test/tc_node_write.rb
176
+ - test/tc_node_xlink.rb
177
+ - test/tc_parser.rb
178
+ - test/tc_parser_context.rb
179
+ - test/tc_properties.rb
180
+ - test/tc_reader.rb
181
+ - test/tc_relaxng.rb
182
+ - test/tc_sax_parser.rb
183
+ - test/tc_schema.rb
184
+ - test/tc_traversal.rb
185
+ - test/tc_xinclude.rb
186
+ - test/tc_xml.rb
187
+ - test/tc_xpath.rb
188
+ - test/tc_xpath_context.rb
189
+ - test/tc_xpath_expression.rb
190
+ - test/tc_xpointer.rb
191
+ - test/test_suite.rb
192
+ has_rdoc: true
193
+ homepage: http://libxml.rubyforge.org/
194
+ licenses: []
195
+
196
+ post_install_message:
197
+ rdoc_options: []
198
+
199
+ require_paths:
200
+ - lib
201
+ - ext/libxml
202
+ required_ruby_version: !ruby/object:Gem::Requirement
203
+ none: false
204
+ requirements:
205
+ - - ">="
206
+ - !ruby/object:Gem::Version
207
+ segments:
208
+ - 1
209
+ - 8
210
+ - 4
211
+ version: 1.8.4
212
+ required_rubygems_version: !ruby/object:Gem::Requirement
213
+ none: false
214
+ requirements:
215
+ - - ">="
216
+ - !ruby/object:Gem::Version
217
+ segments:
218
+ - 0
219
+ version: "0"
220
+ requirements: []
221
+
222
+ rubyforge_project: libxml
223
+ rubygems_version: 1.3.7
224
+ signing_key:
225
+ specification_version: 3
226
+ summary: Ruby libxml bindings
227
+ test_files:
228
+ - test/tc_attr.rb
229
+ - test/tc_attributes.rb
230
+ - test/tc_attr_decl.rb
231
+ - test/tc_deprecated_require.rb
232
+ - test/tc_document.rb
233
+ - test/tc_document_write.rb
234
+ - test/tc_dtd.rb
235
+ - test/tc_error.rb
236
+ - test/tc_html_parser.rb
237
+ - test/tc_namespace.rb
238
+ - test/tc_namespaces.rb
239
+ - test/tc_node.rb
240
+ - test/tc_node_cdata.rb
241
+ - test/tc_node_comment.rb
242
+ - test/tc_node_copy.rb
243
+ - test/tc_node_edit.rb
244
+ - test/tc_node_text.rb
245
+ - test/tc_node_write.rb
246
+ - test/tc_node_xlink.rb
247
+ - test/tc_parser.rb
248
+ - test/tc_parser_context.rb
249
+ - test/tc_properties.rb
250
+ - test/tc_reader.rb
251
+ - test/tc_relaxng.rb
252
+ - test/tc_sax_parser.rb
253
+ - test/tc_schema.rb
254
+ - test/tc_traversal.rb
255
+ - test/tc_xinclude.rb
256
+ - test/tc_xml.rb
257
+ - test/tc_xpath.rb
258
+ - test/tc_xpath_context.rb
259
+ - test/tc_xpath_expression.rb
260
+ - test/tc_xpointer.rb