libxml-ruby 2.7.0 → 2.8.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +6 -14
- data/HISTORY +17 -10
- data/Rakefile +6 -5
- data/ext/libxml/extconf.rb +11 -13
- data/ext/libxml/ruby_xml_document.c +1 -1
- data/ext/libxml/ruby_xml_node.c +1 -1
- data/ext/libxml/ruby_xml_schema.c +1 -1
- data/ext/libxml/ruby_xml_version.h +3 -3
- data/ext/libxml/ruby_xml_writer.c +20 -1
- data/ext/libxml/ruby_xml_xpath.c +1 -0
- data/ext/libxml/ruby_xml_xpath_object.c +1 -1
- data/libxml-ruby.gemspec +1 -1
- metadata +60 -78
- data/ext/libxml/extconf.h +0 -5
- data/test/model/kml_sample.xml +0 -915
- data/test/remove_test.rb +0 -9
- data/test/tc_gc.rb +0 -86
- data/test/tc_parser.rb.orig +0 -384
checksums.yaml
CHANGED
@@ -1,15 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
metadata.gz: !binary |-
|
9
|
-
N2NiZTI5YmRkY2IzODEyZGNiYjAxZGExOWY2MTRhZGIxYTQ0MTcwNzlhZjE5
|
10
|
-
NjRlMGM1NzVjOTAxOTNlNjIwODIxNmNiZTlhZTVjNGQ2NDYzZDQ5Mzg3YmZm
|
11
|
-
MDZlNjViNDBiMTY4ZDgzZjc1MGEyYTczM2E0MDkxZDdmOTA3MDU=
|
12
|
-
data.tar.gz: !binary |-
|
13
|
-
NDQ2MDNiZjRiZDg1YTg2Yjc0YjA0NzU5M2EwNzNhNTJmN2QyMzIzZDU3MWY2
|
14
|
-
OThmZmRiZTFmZWRmYmRjN2U2OTlmZTliZDljMjEzMWM0MDhjNmU2OWI3MTMy
|
15
|
-
YWZkZDM5NTI5MGExZGZjYjUyZDM4NDcyMGRmNjQxOTZhMDA5NmU=
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 0b6519d153d5b2c7dfeb51820c994b2d5594e96c
|
4
|
+
data.tar.gz: 53f1b868aa8c8834db3af1c1fc1bc79ac7f3babd
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 4e91bc40ec03976a3f81fdc1376432c040503757317f14c998a41f31bdbddc0d08a339fa516e4ea089a9332d8454d053bef0a665cbefd1d9932cd1363e3d7d47
|
7
|
+
data.tar.gz: f41504c67abddf5ed8e8153bc8e55534020b9df2d71f58810351212291dbf78a082d6633636fdb002c16ea21e7c919c0327d88d078620780df1c85924b0a8c36
|
data/HISTORY
CHANGED
@@ -1,18 +1,25 @@
|
|
1
1
|
= Release History
|
2
2
|
|
3
|
-
== 2.
|
3
|
+
== 2.8.0 / 2015-01-09 Charlie Savage
|
4
4
|
|
5
|
-
*
|
6
|
-
*
|
5
|
+
* Use RbConfig instead of Config in extconf.rb (Robert Haines)
|
6
|
+
* Correct xpath documentation XML (Bill Mill)
|
7
|
+
* Correct from_string method documentation (Bill Mill)
|
8
|
+
* Fix compile error with debug not enabled in libxml (Patrick Ziegler)
|
9
|
+
* Update gemspec to include license (Charlie Savage)
|
10
|
+
* In XML::Writer prevent writing to io while being GCed (Brett Gibson)
|
11
|
+
|
12
|
+
== 2.7.0 / 2013-08-13 Charlie Savage
|
13
|
+
|
14
|
+
* Don't call rb_warning in GC mark function (Dirkjan Bussink)
|
7
15
|
* Set libxml error handler when a libxml-ruby error handler is set (Geoffrey Giesemann)
|
8
|
-
* Fix tests for nil TypeErrors (Geoffrey Giesemann)
|
9
|
-
* Fix segmentation fault for issue #62
|
10
|
-
|
11
|
-
*
|
12
|
-
* Fix
|
13
|
-
* Fix XML::Writer.set_quote_char UT, wrong expected string (#63). (julp)
|
16
|
+
* Fix tests for nil TypeErrors for ruby 2.0=< (Geoffrey Giesemann)
|
17
|
+
* Fix segmentation fault for issue #62 (Charlie Savage)
|
18
|
+
* Add #node_type method to dtd (Charlie Savage)
|
19
|
+
* Fixing equality check of LibXML::XML::Error against other objects (Michał Szajbe)
|
20
|
+
* Fix #63, XML::Writer.set_quote_char UT, wrong expected string (julp)
|
14
21
|
* Fix potential segfault when GC occurs while creating ns from xpath (Timothy Elliott)
|
15
|
-
* Fix segmentation fault after
|
22
|
+
* Fix for #59, segmentation fault after failure to load external schema (Clifford Heath)
|
16
23
|
|
17
24
|
== 2.6.0 / 2013-02-16 Charlie Savage
|
18
25
|
|
data/Rakefile
CHANGED
@@ -51,14 +51,15 @@ if RUBY_PLATFORM.match(/win32|mingw32/)
|
|
51
51
|
end
|
52
52
|
|
53
53
|
# RDoc Task
|
54
|
-
desc
|
54
|
+
desc 'Generate rdoc documentation'
|
55
55
|
RDoc::Task.new("rdoc") do |rdoc|
|
56
56
|
rdoc.rdoc_dir = 'website/_site/rdoc'
|
57
|
-
rdoc.title =
|
57
|
+
rdoc.title = 'LibXML'
|
58
|
+
rdoc.generator = 'hanna'
|
59
|
+
|
58
60
|
# Show source inline with line numbers
|
59
|
-
rdoc.options <<
|
60
|
-
rdoc.options <<
|
61
|
-
rdoc.options << "--format=hanna"
|
61
|
+
rdoc.options << '--line-numbers'
|
62
|
+
rdoc.options << '--charset=utf-8'
|
62
63
|
# Make the readme file the start page for the generated html
|
63
64
|
rdoc.main = 'README.rdoc'
|
64
65
|
rdoc.rdoc_files.include('doc/*.rdoc',
|
data/ext/libxml/extconf.rb
CHANGED
@@ -4,19 +4,17 @@ require 'rbconfig'
|
|
4
4
|
|
5
5
|
require 'mkmf'
|
6
6
|
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
#$LIBPATH.push(Config::CONFIG['libdir'])
|
19
|
-
$LDFLAGS = "-Lc:/mingw/local/lib"
|
7
|
+
if defined?(CFLAGS)
|
8
|
+
if CFLAGS.index(CONFIG['CCDLFLAGS'])
|
9
|
+
$CFLAGS = CFLAGS + ' ' + CONFIG['CCDLFLAGS']
|
10
|
+
else
|
11
|
+
$CFLAGS = CFLAGS
|
12
|
+
end
|
13
|
+
else
|
14
|
+
$CFLAGS = CONFIG['CFLAGS']
|
15
|
+
end
|
16
|
+
$LDFLAGS = CONFIG['LDFLAGS']
|
17
|
+
$LIBPATH.push(RbConfig::CONFIG['libdir'])
|
20
18
|
|
21
19
|
def crash(str)
|
22
20
|
printf(" extconf failure: %s\n", str)
|
@@ -475,7 +475,7 @@ static VALUE rxml_document_debug(VALUE self)
|
|
475
475
|
xmlDebugDumpDocument(NULL, xdoc);
|
476
476
|
return Qtrue;
|
477
477
|
#else
|
478
|
-
rb_warn("libxml was compiled without debugging support.")
|
478
|
+
rb_warn("libxml was compiled without debugging support.");
|
479
479
|
return Qfalse;
|
480
480
|
#endif
|
481
481
|
}
|
data/ext/libxml/ruby_xml_node.c
CHANGED
@@ -450,7 +450,7 @@ static VALUE rxml_node_debug(VALUE self)
|
|
450
450
|
xmlDebugDumpNode(NULL, xnode, 2);
|
451
451
|
return Qtrue;
|
452
452
|
#else
|
453
|
-
rb_warn("libxml was compiled without debugging support.")
|
453
|
+
rb_warn("libxml was compiled without debugging support.");
|
454
454
|
return Qfalse;
|
455
455
|
#endif
|
456
456
|
}
|
@@ -97,7 +97,7 @@ static VALUE rxml_schema_init_from_document(VALUE class, VALUE document)
|
|
97
97
|
|
98
98
|
/*
|
99
99
|
* call-seq:
|
100
|
-
* XML::Schema.
|
100
|
+
* XML::Schema.from_string("schema_data") -> "value"
|
101
101
|
*
|
102
102
|
* Create a new schema using the specified string.
|
103
103
|
*/
|
@@ -1,9 +1,9 @@
|
|
1
1
|
/* Don't nuke this block! It is used for automatically updating the
|
2
2
|
* versions below. VERSION = string formatting, VERNUM = numbered
|
3
3
|
* version for inline testing: increment both or none at all.*/
|
4
|
-
#define RUBY_LIBXML_VERSION "2.
|
5
|
-
#define RUBY_LIBXML_VERNUM
|
4
|
+
#define RUBY_LIBXML_VERSION "2.8.0"
|
5
|
+
#define RUBY_LIBXML_VERNUM 280
|
6
6
|
#define RUBY_LIBXML_VER_MAJ 2
|
7
|
-
#define RUBY_LIBXML_VER_MIN
|
7
|
+
#define RUBY_LIBXML_VER_MIN 8
|
8
8
|
#define RUBY_LIBXML_VER_MIC 0
|
9
9
|
#define RUBY_LIBXML_VER_PATCH 0
|
@@ -34,6 +34,7 @@ typedef struct {
|
|
34
34
|
xmlBufferPtr buffer;
|
35
35
|
xmlTextWriterPtr writer;
|
36
36
|
rxmlw_output_type output_type;
|
37
|
+
int closed;
|
37
38
|
} rxml_writer_object;
|
38
39
|
|
39
40
|
#ifdef HAVE_RUBY_ENCODING_H
|
@@ -72,6 +73,8 @@ static void rxml_writer_free(rxml_writer_object *rwo)
|
|
72
73
|
xmlBufferFree(rwo->buffer);
|
73
74
|
}
|
74
75
|
#endif
|
76
|
+
|
77
|
+
rwo->closed = 1;
|
75
78
|
xmlFreeTextWriter(rwo->writer);
|
76
79
|
xfree(rwo);
|
77
80
|
}
|
@@ -97,6 +100,17 @@ static rxml_writer_object *rxml_textwriter_get(VALUE obj)
|
|
97
100
|
return rwo;
|
98
101
|
}
|
99
102
|
|
103
|
+
int rxml_writer_write_callback(void *context, const char *buffer, int len)
|
104
|
+
{
|
105
|
+
rxml_writer_object *rwo = context;
|
106
|
+
|
107
|
+
if(rwo->closed){
|
108
|
+
return 0;
|
109
|
+
}else{
|
110
|
+
return rxml_write_callback((void *)rwo->output, buffer, len);
|
111
|
+
}
|
112
|
+
}
|
113
|
+
|
100
114
|
/* ===== public class methods ===== */
|
101
115
|
|
102
116
|
/* call-seq:
|
@@ -122,11 +136,12 @@ xmlCharEncodingHandlerPtr xmlFindCharEncodingHandler(const char * name);
|
|
122
136
|
rwo = ALLOC(rxml_writer_object);
|
123
137
|
rwo->output = io;
|
124
138
|
rwo->buffer = NULL;
|
139
|
+
rwo->closed = 0;
|
125
140
|
#ifdef HAVE_RUBY_ENCODING_H
|
126
141
|
rwo->encoding = NULL;
|
127
142
|
#endif /* HAVE_RUBY_ENCODING_H */
|
128
143
|
rwo->output_type = RXMLW_OUTPUT_IO;
|
129
|
-
if (NULL == (out = xmlOutputBufferCreateIO(
|
144
|
+
if (NULL == (out = xmlOutputBufferCreateIO(rxml_writer_write_callback, NULL, (void *) rwo, NULL))) {
|
130
145
|
rxml_raise(&xmlLastError);
|
131
146
|
}
|
132
147
|
if (NULL == (rwo->writer = xmlNewTextWriter(out))) {
|
@@ -150,6 +165,7 @@ static VALUE rxml_writer_file(VALUE klass, VALUE filename)
|
|
150
165
|
rwo = ALLOC(rxml_writer_object);
|
151
166
|
rwo->output = Qnil;
|
152
167
|
rwo->buffer = NULL;
|
168
|
+
rwo->closed = 0;
|
153
169
|
#ifdef HAVE_RUBY_ENCODING_H
|
154
170
|
rwo->encoding = NULL;
|
155
171
|
#endif /* HAVE_RUBY_ENCODING_H */
|
@@ -172,6 +188,7 @@ static VALUE rxml_writer_string(VALUE klass)
|
|
172
188
|
|
173
189
|
rwo = ALLOC(rxml_writer_object);
|
174
190
|
rwo->output = Qnil;
|
191
|
+
rwo->closed = 0;
|
175
192
|
#ifdef HAVE_RUBY_ENCODING_H
|
176
193
|
rwo->encoding = NULL;
|
177
194
|
#endif /* HAVE_RUBY_ENCODING_H */
|
@@ -200,6 +217,7 @@ static VALUE rxml_writer_doc(VALUE klass)
|
|
200
217
|
rwo = ALLOC(rxml_writer_object);
|
201
218
|
rwo->buffer = NULL;
|
202
219
|
rwo->output = Qnil;
|
220
|
+
rwo->closed = 0;
|
203
221
|
#ifdef HAVE_RUBY_ENCODING_H
|
204
222
|
rwo->encoding = NULL;
|
205
223
|
#endif /* HAVE_RUBY_ENCODING_H */
|
@@ -234,6 +252,7 @@ static VALUE rxml_writer_flush(int argc, VALUE *argv, VALUE self)
|
|
234
252
|
if (-1 == (ret = xmlTextWriterFlush(rwo->writer))) {
|
235
253
|
rxml_raise(&xmlLastError);
|
236
254
|
}
|
255
|
+
|
237
256
|
if (NULL != rwo->buffer) {
|
238
257
|
VALUE content;
|
239
258
|
|
data/ext/libxml/ruby_xml_xpath.c
CHANGED
@@ -312,7 +312,7 @@ static VALUE rxml_xpath_object_debug(VALUE self)
|
|
312
312
|
xmlXPathDebugDumpObject(stdout, rxpop->xpop, 0);
|
313
313
|
return Qtrue;
|
314
314
|
#else
|
315
|
-
rb_warn("libxml was compiled without debugging support.")
|
315
|
+
rb_warn("libxml was compiled without debugging support.");
|
316
316
|
return Qfalse;
|
317
317
|
#endif
|
318
318
|
}
|
data/libxml-ruby.gemspec
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.8.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ross Bamform
|
@@ -14,27 +14,14 @@ authors:
|
|
14
14
|
autorequire:
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
|
-
date:
|
18
|
-
dependencies:
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
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
|
-
description: ! " The Libxml-Ruby project provides Ruby language bindings for the
|
34
|
-
GNOME\n Libxml2 XML toolkit. It is free software, released under the MIT License.\n
|
35
|
-
\ Libxml-ruby's primary advantage over REXML is performance - if speed\n is
|
36
|
-
your need, these are good libraries to consider, as demonstrated\n by the informal
|
37
|
-
benchmark below.\n"
|
17
|
+
date: 2015-01-09 00:00:00.000000000 Z
|
18
|
+
dependencies: []
|
19
|
+
description: |2
|
20
|
+
The Libxml-Ruby project provides Ruby language bindings for the GNOME
|
21
|
+
Libxml2 XML toolkit. It is free software, released under the MIT License.
|
22
|
+
Libxml-ruby's primary advantage over REXML is performance - if speed
|
23
|
+
is your need, these are good libraries to consider, as demonstrated
|
24
|
+
by the informal benchmark below.
|
38
25
|
email:
|
39
26
|
executables: []
|
40
27
|
extensions:
|
@@ -43,92 +30,90 @@ extra_rdoc_files: []
|
|
43
30
|
files:
|
44
31
|
- HISTORY
|
45
32
|
- LICENSE
|
46
|
-
- libxml-ruby.gemspec
|
47
33
|
- MANIFEST
|
48
|
-
- Rakefile
|
49
34
|
- README.rdoc
|
50
|
-
-
|
35
|
+
- Rakefile
|
36
|
+
- ext/libxml/extconf.rb
|
37
|
+
- ext/libxml/libxml.c
|
51
38
|
- ext/libxml/libxml_ruby.def
|
52
|
-
- ext/libxml/extconf.h
|
53
39
|
- ext/libxml/ruby_libxml.h
|
40
|
+
- ext/libxml/ruby_xml.c
|
54
41
|
- ext/libxml/ruby_xml.h
|
42
|
+
- ext/libxml/ruby_xml_attr.c
|
55
43
|
- ext/libxml/ruby_xml_attr.h
|
56
|
-
- ext/libxml/
|
44
|
+
- ext/libxml/ruby_xml_attr_decl.c
|
57
45
|
- ext/libxml/ruby_xml_attr_decl.h
|
58
|
-
- ext/libxml/ruby_xml_document.h
|
59
|
-
- ext/libxml/ruby_xml_dtd.h
|
60
|
-
- ext/libxml/ruby_xml_encoding.h
|
61
|
-
- ext/libxml/ruby_xml_error.h
|
62
|
-
- ext/libxml/ruby_xml_html_parser.h
|
63
|
-
- ext/libxml/ruby_xml_html_parser_context.h
|
64
|
-
- ext/libxml/ruby_xml_html_parser_options.h
|
65
|
-
- ext/libxml/ruby_xml_input_cbg.h
|
66
|
-
- ext/libxml/ruby_xml_io.h
|
67
|
-
- ext/libxml/ruby_xml_namespace.h
|
68
|
-
- ext/libxml/ruby_xml_namespaces.h
|
69
|
-
- ext/libxml/ruby_xml_node.h
|
70
|
-
- ext/libxml/ruby_xml_parser.h
|
71
|
-
- ext/libxml/ruby_xml_parser_context.h
|
72
|
-
- ext/libxml/ruby_xml_parser_options.h
|
73
|
-
- ext/libxml/ruby_xml_reader.h
|
74
|
-
- ext/libxml/ruby_xml_relaxng.h
|
75
|
-
- ext/libxml/ruby_xml_sax2_handler.h
|
76
|
-
- ext/libxml/ruby_xml_sax_parser.h
|
77
|
-
- ext/libxml/ruby_xml_schema.h
|
78
|
-
- ext/libxml/ruby_xml_schema_attribute.h
|
79
|
-
- ext/libxml/ruby_xml_schema_element.h
|
80
|
-
- ext/libxml/ruby_xml_schema_facet.h
|
81
|
-
- ext/libxml/ruby_xml_schema_type.h
|
82
|
-
- ext/libxml/ruby_xml_version.h
|
83
|
-
- ext/libxml/ruby_xml_writer.h
|
84
|
-
- ext/libxml/ruby_xml_xinclude.h
|
85
|
-
- ext/libxml/ruby_xml_xpath.h
|
86
|
-
- ext/libxml/ruby_xml_xpath_context.h
|
87
|
-
- ext/libxml/ruby_xml_xpath_expression.h
|
88
|
-
- ext/libxml/ruby_xml_xpath_object.h
|
89
|
-
- ext/libxml/ruby_xml_xpointer.h
|
90
|
-
- ext/libxml/libxml.c
|
91
|
-
- ext/libxml/ruby_xml.c
|
92
|
-
- ext/libxml/ruby_xml_attr.c
|
93
46
|
- ext/libxml/ruby_xml_attributes.c
|
94
|
-
- ext/libxml/
|
47
|
+
- ext/libxml/ruby_xml_attributes.h
|
95
48
|
- ext/libxml/ruby_xml_cbg.c
|
96
49
|
- ext/libxml/ruby_xml_document.c
|
50
|
+
- ext/libxml/ruby_xml_document.h
|
97
51
|
- ext/libxml/ruby_xml_dtd.c
|
52
|
+
- ext/libxml/ruby_xml_dtd.h
|
98
53
|
- ext/libxml/ruby_xml_encoding.c
|
54
|
+
- ext/libxml/ruby_xml_encoding.h
|
99
55
|
- ext/libxml/ruby_xml_error.c
|
56
|
+
- ext/libxml/ruby_xml_error.h
|
100
57
|
- ext/libxml/ruby_xml_html_parser.c
|
58
|
+
- ext/libxml/ruby_xml_html_parser.h
|
101
59
|
- ext/libxml/ruby_xml_html_parser_context.c
|
60
|
+
- ext/libxml/ruby_xml_html_parser_context.h
|
102
61
|
- ext/libxml/ruby_xml_html_parser_options.c
|
62
|
+
- ext/libxml/ruby_xml_html_parser_options.h
|
103
63
|
- ext/libxml/ruby_xml_input_cbg.c
|
64
|
+
- ext/libxml/ruby_xml_input_cbg.h
|
104
65
|
- ext/libxml/ruby_xml_io.c
|
66
|
+
- ext/libxml/ruby_xml_io.h
|
105
67
|
- ext/libxml/ruby_xml_namespace.c
|
68
|
+
- ext/libxml/ruby_xml_namespace.h
|
106
69
|
- ext/libxml/ruby_xml_namespaces.c
|
70
|
+
- ext/libxml/ruby_xml_namespaces.h
|
107
71
|
- ext/libxml/ruby_xml_node.c
|
72
|
+
- ext/libxml/ruby_xml_node.h
|
108
73
|
- ext/libxml/ruby_xml_parser.c
|
74
|
+
- ext/libxml/ruby_xml_parser.h
|
109
75
|
- ext/libxml/ruby_xml_parser_context.c
|
76
|
+
- ext/libxml/ruby_xml_parser_context.h
|
110
77
|
- ext/libxml/ruby_xml_parser_options.c
|
78
|
+
- ext/libxml/ruby_xml_parser_options.h
|
111
79
|
- ext/libxml/ruby_xml_reader.c
|
80
|
+
- ext/libxml/ruby_xml_reader.h
|
112
81
|
- ext/libxml/ruby_xml_relaxng.c
|
82
|
+
- ext/libxml/ruby_xml_relaxng.h
|
113
83
|
- ext/libxml/ruby_xml_sax2_handler.c
|
84
|
+
- ext/libxml/ruby_xml_sax2_handler.h
|
114
85
|
- ext/libxml/ruby_xml_sax_parser.c
|
86
|
+
- ext/libxml/ruby_xml_sax_parser.h
|
115
87
|
- ext/libxml/ruby_xml_schema.c
|
88
|
+
- ext/libxml/ruby_xml_schema.h
|
116
89
|
- ext/libxml/ruby_xml_schema_attribute.c
|
90
|
+
- ext/libxml/ruby_xml_schema_attribute.h
|
117
91
|
- ext/libxml/ruby_xml_schema_element.c
|
92
|
+
- ext/libxml/ruby_xml_schema_element.h
|
118
93
|
- ext/libxml/ruby_xml_schema_facet.c
|
94
|
+
- ext/libxml/ruby_xml_schema_facet.h
|
119
95
|
- ext/libxml/ruby_xml_schema_type.c
|
96
|
+
- ext/libxml/ruby_xml_schema_type.h
|
97
|
+
- ext/libxml/ruby_xml_version.h
|
120
98
|
- ext/libxml/ruby_xml_writer.c
|
99
|
+
- ext/libxml/ruby_xml_writer.h
|
121
100
|
- ext/libxml/ruby_xml_xinclude.c
|
101
|
+
- ext/libxml/ruby_xml_xinclude.h
|
122
102
|
- ext/libxml/ruby_xml_xpath.c
|
103
|
+
- ext/libxml/ruby_xml_xpath.h
|
123
104
|
- ext/libxml/ruby_xml_xpath_context.c
|
105
|
+
- ext/libxml/ruby_xml_xpath_context.h
|
124
106
|
- ext/libxml/ruby_xml_xpath_expression.c
|
107
|
+
- ext/libxml/ruby_xml_xpath_expression.h
|
125
108
|
- ext/libxml/ruby_xml_xpath_object.c
|
109
|
+
- ext/libxml/ruby_xml_xpath_object.h
|
126
110
|
- ext/libxml/ruby_xml_xpointer.c
|
127
|
-
- ext/libxml/
|
111
|
+
- ext/libxml/ruby_xml_xpointer.h
|
128
112
|
- ext/vc/libxml_ruby.sln
|
113
|
+
- lib/libxml.rb
|
129
114
|
- lib/libxml/attr.rb
|
130
|
-
- lib/libxml/attributes.rb
|
131
115
|
- lib/libxml/attr_decl.rb
|
116
|
+
- lib/libxml/attributes.rb
|
132
117
|
- lib/libxml/document.rb
|
133
118
|
- lib/libxml/error.rb
|
134
119
|
- lib/libxml/hpricot.rb
|
@@ -142,21 +127,22 @@ files:
|
|
142
127
|
- lib/libxml/reader.rb
|
143
128
|
- lib/libxml/sax_callbacks.rb
|
144
129
|
- lib/libxml/sax_parser.rb
|
130
|
+
- lib/libxml/schema.rb
|
145
131
|
- lib/libxml/schema/attribute.rb
|
146
132
|
- lib/libxml/schema/element.rb
|
147
133
|
- lib/libxml/schema/type.rb
|
148
|
-
- lib/libxml/schema.rb
|
149
134
|
- lib/libxml/tree.rb
|
150
135
|
- lib/libxml/xpath_object.rb
|
151
|
-
- lib/libxml.rb
|
152
|
-
- lib/xml/libxml.rb
|
153
136
|
- lib/xml.rb
|
137
|
+
- lib/xml/libxml.rb
|
138
|
+
- libxml-ruby.gemspec
|
154
139
|
- script/benchmark/depixelate
|
155
140
|
- script/benchmark/hamlet.xml
|
156
141
|
- script/benchmark/parsecount
|
157
142
|
- script/benchmark/sock_entries.xml
|
158
143
|
- script/benchmark/throughput
|
159
144
|
- script/test
|
145
|
+
- setup.rb
|
160
146
|
- test/c14n/given/doc.dtd
|
161
147
|
- test/c14n/given/example-1.xml
|
162
148
|
- test/c14n/given/example-2.xml
|
@@ -202,7 +188,6 @@ files:
|
|
202
188
|
- test/model/bands.utf-8.xml
|
203
189
|
- test/model/bands.xml
|
204
190
|
- test/model/books.xml
|
205
|
-
- test/model/kml_sample.xml
|
206
191
|
- test/model/merge_bug_data.xml
|
207
192
|
- test/model/ruby-lang.html
|
208
193
|
- test/model/rubynet.xml
|
@@ -213,10 +198,9 @@ files:
|
|
213
198
|
- test/model/shiporder.xsd
|
214
199
|
- test/model/soap.xml
|
215
200
|
- test/model/xinclude.xml
|
216
|
-
- test/remove_test.rb
|
217
201
|
- test/tc_attr.rb
|
218
|
-
- test/tc_attributes.rb
|
219
202
|
- test/tc_attr_decl.rb
|
203
|
+
- test/tc_attributes.rb
|
220
204
|
- test/tc_canonicalize.rb
|
221
205
|
- test/tc_deprecated_require.rb
|
222
206
|
- test/tc_document.rb
|
@@ -225,7 +209,6 @@ files:
|
|
225
209
|
- test/tc_encoding.rb
|
226
210
|
- test/tc_encoding_sax.rb
|
227
211
|
- test/tc_error.rb
|
228
|
-
- test/tc_gc.rb
|
229
212
|
- test/tc_html_parser.rb
|
230
213
|
- test/tc_html_parser_context.rb
|
231
214
|
- test/tc_namespace.rb
|
@@ -240,7 +223,6 @@ files:
|
|
240
223
|
- test/tc_node_write.rb
|
241
224
|
- test/tc_node_xlink.rb
|
242
225
|
- test/tc_parser.rb
|
243
|
-
- test/tc_parser.rb.orig
|
244
226
|
- test/tc_parser_context.rb
|
245
227
|
- test/tc_properties.rb
|
246
228
|
- test/tc_reader.rb
|
@@ -258,7 +240,8 @@ files:
|
|
258
240
|
- test/test_helper.rb
|
259
241
|
- test/test_suite.rb
|
260
242
|
homepage: http://xml4r.github.com/libxml-ruby
|
261
|
-
licenses:
|
243
|
+
licenses:
|
244
|
+
- MIT
|
262
245
|
metadata: {}
|
263
246
|
post_install_message:
|
264
247
|
rdoc_options: []
|
@@ -266,17 +249,17 @@ require_paths:
|
|
266
249
|
- lib
|
267
250
|
required_ruby_version: !ruby/object:Gem::Requirement
|
268
251
|
requirements:
|
269
|
-
- -
|
252
|
+
- - ">="
|
270
253
|
- !ruby/object:Gem::Version
|
271
254
|
version: 1.8.6
|
272
255
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
273
256
|
requirements:
|
274
|
-
- -
|
257
|
+
- - ">="
|
275
258
|
- !ruby/object:Gem::Version
|
276
259
|
version: '0'
|
277
260
|
requirements: []
|
278
261
|
rubyforge_project:
|
279
|
-
rubygems_version: 2.
|
262
|
+
rubygems_version: 2.4.5
|
280
263
|
signing_key:
|
281
264
|
specification_version: 4
|
282
265
|
summary: Ruby Bindings for LibXML2
|
@@ -292,7 +275,6 @@ test_files:
|
|
292
275
|
- test/tc_encoding.rb
|
293
276
|
- test/tc_encoding_sax.rb
|
294
277
|
- test/tc_error.rb
|
295
|
-
- test/tc_gc.rb
|
296
278
|
- test/tc_html_parser.rb
|
297
279
|
- test/tc_html_parser_context.rb
|
298
280
|
- test/tc_namespace.rb
|