libxml-ruby 2.4.0-x86-mingw32 → 2.5.0-x86-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.
- data/HISTORY +14 -0
- data/LICENSE +1 -1
- data/README.rdoc +14 -19
- data/Rakefile +4 -5
- data/ext/libxml/extconf.rb +2 -0
- data/ext/libxml/libxml.c +1 -0
- data/ext/libxml/ruby_libxml.h +1 -0
- data/ext/libxml/ruby_xml_io.c +22 -0
- data/ext/libxml/ruby_xml_io.h +1 -0
- data/ext/libxml/ruby_xml_reader.c +115 -6
- data/ext/libxml/ruby_xml_schema.c +1 -1
- data/ext/libxml/ruby_xml_schema_type.c +7 -0
- data/ext/libxml/ruby_xml_version.h +3 -3
- data/ext/libxml/ruby_xml_writer.c +1072 -0
- data/ext/libxml/ruby_xml_writer.h +16 -0
- data/lib/1.8/libxml_ruby.so +0 -0
- data/lib/1.9/libxml_ruby.so +0 -0
- data/lib/2.0/libxml_ruby.so +0 -0
- data/lib/libxml/error.rb +19 -20
- data/libxml-ruby.gemspec +1 -0
- data/test/tc_encoding_sax.rb +1 -2
- data/test/tc_error.rb +18 -0
- data/test/tc_reader.rb +43 -1
- data/test/tc_writer.rb +427 -0
- data/test/test_suite.rb +1 -0
- metadata +24 -3
data/test/test_suite.rb
CHANGED
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: 2.
|
4
|
+
version: 2.5.0
|
5
5
|
prerelease:
|
6
6
|
platform: x86-mingw32
|
7
7
|
authors:
|
@@ -15,8 +15,24 @@ authors:
|
|
15
15
|
autorequire:
|
16
16
|
bindir: bin
|
17
17
|
cert_chain: []
|
18
|
-
date:
|
19
|
-
dependencies:
|
18
|
+
date: 2013-01-27 00:00:00.000000000 Z
|
19
|
+
dependencies:
|
20
|
+
- !ruby/object:Gem::Dependency
|
21
|
+
name: hanna_guado
|
22
|
+
requirement: !ruby/object:Gem::Requirement
|
23
|
+
none: false
|
24
|
+
requirements:
|
25
|
+
- - ! '>='
|
26
|
+
- !ruby/object:Gem::Version
|
27
|
+
version: '0'
|
28
|
+
type: :development
|
29
|
+
prerelease: false
|
30
|
+
version_requirements: !ruby/object:Gem::Requirement
|
31
|
+
none: false
|
32
|
+
requirements:
|
33
|
+
- - ! '>='
|
34
|
+
- !ruby/object:Gem::Version
|
35
|
+
version: '0'
|
20
36
|
description: ! " The Libxml-Ruby project provides Ruby language bindings for the
|
21
37
|
GNOME\n Libxml2 XML toolkit. It is free software, released under the MIT License.\n
|
22
38
|
\ Libxml-ruby's primary advantage over REXML is performance - if speed\n is
|
@@ -66,6 +82,7 @@ files:
|
|
66
82
|
- ext/libxml/ruby_xml_schema_facet.h
|
67
83
|
- ext/libxml/ruby_xml_schema_type.h
|
68
84
|
- ext/libxml/ruby_xml_version.h
|
85
|
+
- ext/libxml/ruby_xml_writer.h
|
69
86
|
- ext/libxml/ruby_xml_xinclude.h
|
70
87
|
- ext/libxml/ruby_xml_xpath.h
|
71
88
|
- ext/libxml/ruby_xml_xpath_context.h
|
@@ -102,6 +119,7 @@ files:
|
|
102
119
|
- ext/libxml/ruby_xml_schema_element.c
|
103
120
|
- ext/libxml/ruby_xml_schema_facet.c
|
104
121
|
- ext/libxml/ruby_xml_schema_type.c
|
122
|
+
- ext/libxml/ruby_xml_writer.c
|
105
123
|
- ext/libxml/ruby_xml_xinclude.c
|
106
124
|
- ext/libxml/ruby_xml_xpath.c
|
107
125
|
- ext/libxml/ruby_xml_xpath_context.c
|
@@ -230,6 +248,7 @@ files:
|
|
230
248
|
- test/tc_sax_parser.rb
|
231
249
|
- test/tc_schema.rb
|
232
250
|
- test/tc_traversal.rb
|
251
|
+
- test/tc_writer.rb
|
233
252
|
- test/tc_xinclude.rb
|
234
253
|
- test/tc_xml.rb
|
235
254
|
- test/tc_xpath.rb
|
@@ -240,6 +259,7 @@ files:
|
|
240
259
|
- test/test_suite.rb
|
241
260
|
- lib/1.8/libxml_ruby.so
|
242
261
|
- lib/1.9/libxml_ruby.so
|
262
|
+
- lib/2.0/libxml_ruby.so
|
243
263
|
- lib/libs/libiconv-2.dll
|
244
264
|
- lib/libs/libxml2-2.dll
|
245
265
|
- lib/libs/libz.dll
|
@@ -301,6 +321,7 @@ test_files:
|
|
301
321
|
- test/tc_sax_parser.rb
|
302
322
|
- test/tc_schema.rb
|
303
323
|
- test/tc_traversal.rb
|
324
|
+
- test/tc_writer.rb
|
304
325
|
- test/tc_xinclude.rb
|
305
326
|
- test/tc_xml.rb
|
306
327
|
- test/tc_xpath.rb
|