libxml-ruby 2.4.0 → 2.5.0
Sign up to get free protection for your applications and to get access to all the features.
- 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/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 +23 -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: ruby
|
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
|
@@ -67,6 +83,7 @@ files:
|
|
67
83
|
- ext/libxml/ruby_xml_schema_facet.h
|
68
84
|
- ext/libxml/ruby_xml_schema_type.h
|
69
85
|
- ext/libxml/ruby_xml_version.h
|
86
|
+
- ext/libxml/ruby_xml_writer.h
|
70
87
|
- ext/libxml/ruby_xml_xinclude.h
|
71
88
|
- ext/libxml/ruby_xml_xpath.h
|
72
89
|
- ext/libxml/ruby_xml_xpath_context.h
|
@@ -103,6 +120,7 @@ files:
|
|
103
120
|
- ext/libxml/ruby_xml_schema_element.c
|
104
121
|
- ext/libxml/ruby_xml_schema_facet.c
|
105
122
|
- ext/libxml/ruby_xml_schema_type.c
|
123
|
+
- ext/libxml/ruby_xml_writer.c
|
106
124
|
- ext/libxml/ruby_xml_xinclude.c
|
107
125
|
- ext/libxml/ruby_xml_xpath.c
|
108
126
|
- ext/libxml/ruby_xml_xpath_context.c
|
@@ -231,6 +249,7 @@ files:
|
|
231
249
|
- test/tc_sax_parser.rb
|
232
250
|
- test/tc_schema.rb
|
233
251
|
- test/tc_traversal.rb
|
252
|
+
- test/tc_writer.rb
|
234
253
|
- test/tc_xinclude.rb
|
235
254
|
- test/tc_xml.rb
|
236
255
|
- test/tc_xpath.rb
|
@@ -297,6 +316,7 @@ test_files:
|
|
297
316
|
- test/tc_sax_parser.rb
|
298
317
|
- test/tc_schema.rb
|
299
318
|
- test/tc_traversal.rb
|
319
|
+
- test/tc_writer.rb
|
300
320
|
- test/tc_xinclude.rb
|
301
321
|
- test/tc_xml.rb
|
302
322
|
- test/tc_xpath.rb
|