libxml-ruby 2.3.0 → 2.3.2
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 +10 -1
- data/ext/libxml/ruby_xml_document.c +10 -4
- data/ext/libxml/ruby_xml_version.h +3 -3
- metadata +24 -40
data/HISTORY
CHANGED
@@ -1,6 +1,15 @@
|
|
1
1
|
= Release History
|
2
2
|
|
3
|
-
== 2.3.
|
3
|
+
== 2.3.2 / 2012-03-20 Charlie Savage
|
4
|
+
|
5
|
+
* Define various canonicalize constants to support libxml2 versions
|
6
|
+
older than 1.1.25 (thanks Apple!)
|
7
|
+
|
8
|
+
== 2.3.1 / 2012-03-20 Charlie Savage
|
9
|
+
|
10
|
+
* Yanked - didn't fix the OSX canonicalize issue
|
11
|
+
|
12
|
+
== 2.3.0 / 2012-03-18 Charlie Savage
|
4
13
|
|
5
14
|
* Add ability to insert new PI-nodes into the xmltree (Axel Struebing).
|
6
15
|
|
@@ -142,10 +142,16 @@ static VALUE rxml_document_initialize(int argc, VALUE *argv, VALUE self)
|
|
142
142
|
return self;
|
143
143
|
}
|
144
144
|
|
145
|
-
/*
|
146
|
-
|
147
|
-
|
148
|
-
|
145
|
+
/* XML_C14N_1* constants are not defined until libxml 1.1.25, so if they
|
146
|
+
are not defined then define these constants to map to zero,
|
147
|
+
the same value as XML_C14N_1_0. */
|
148
|
+
|
149
|
+
/* XML_C14N* constants are not defined until libxml 1.1.25, so define them
|
150
|
+
if needed so things compile. */
|
151
|
+
#ifndef XML_C14N_1_0
|
152
|
+
#define XML_C14N_1_0 0
|
153
|
+
#define XML_C14N_EXCLUSIVE_1_0 XML_C14N_1_0
|
154
|
+
#define XML_C14N_1_1 XML_C14N_1_0
|
149
155
|
#endif
|
150
156
|
|
151
157
|
/*
|
@@ -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.3.
|
5
|
-
#define RUBY_LIBXML_VERNUM
|
4
|
+
#define RUBY_LIBXML_VERSION "2.3.2"
|
5
|
+
#define RUBY_LIBXML_VERNUM 232
|
6
6
|
#define RUBY_LIBXML_VER_MAJ 2
|
7
7
|
#define RUBY_LIBXML_VER_MIN 3
|
8
|
-
#define RUBY_LIBXML_VER_MIC
|
8
|
+
#define RUBY_LIBXML_VER_MIC 2
|
9
9
|
#define RUBY_LIBXML_VER_PATCH 0
|
metadata
CHANGED
@@ -1,15 +1,10 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: libxml-ruby
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 2.3.2
|
5
5
|
prerelease:
|
6
|
-
segments:
|
7
|
-
- 2
|
8
|
-
- 3
|
9
|
-
- 0
|
10
|
-
version: 2.3.0
|
11
6
|
platform: ruby
|
12
|
-
authors:
|
7
|
+
authors:
|
13
8
|
- Ross Bamform
|
14
9
|
- Wai-Sun Chia
|
15
10
|
- Sean Chittenden
|
@@ -20,19 +15,19 @@ authors:
|
|
20
15
|
autorequire:
|
21
16
|
bindir: bin
|
22
17
|
cert_chain: []
|
23
|
-
|
24
|
-
date: 2012-03-18 00:00:00 Z
|
18
|
+
date: 2012-03-20 00:00:00.000000000 Z
|
25
19
|
dependencies: []
|
26
|
-
|
27
|
-
|
20
|
+
description: ! " The Libxml-Ruby project provides Ruby language bindings for the
|
21
|
+
GNOME\n Libxml2 XML toolkit. It is free software, released under the MIT License.\n
|
22
|
+
\ Libxml-ruby's primary advantage over REXML is performance - if speed\n is
|
23
|
+
your need, these are good libraries to consider, as demonstrated\n by the informal
|
24
|
+
benchmark below.\n"
|
28
25
|
email:
|
29
26
|
executables: []
|
30
|
-
|
31
|
-
extensions:
|
27
|
+
extensions:
|
32
28
|
- ext/libxml/extconf.rb
|
33
29
|
extra_rdoc_files: []
|
34
|
-
|
35
|
-
files:
|
30
|
+
files:
|
36
31
|
- HISTORY
|
37
32
|
- LICENSE
|
38
33
|
- libxml-ruby.gemspec
|
@@ -234,40 +229,29 @@ files:
|
|
234
229
|
- test/test_suite.rb
|
235
230
|
homepage: http://xml4r.github.com/libxml-ruby
|
236
231
|
licenses: []
|
237
|
-
|
238
232
|
post_install_message:
|
239
233
|
rdoc_options: []
|
240
|
-
|
241
|
-
require_paths:
|
234
|
+
require_paths:
|
242
235
|
- lib
|
243
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
236
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
244
237
|
none: false
|
245
|
-
requirements:
|
246
|
-
- -
|
247
|
-
- !ruby/object:Gem::Version
|
248
|
-
hash: 59
|
249
|
-
segments:
|
250
|
-
- 1
|
251
|
-
- 8
|
252
|
-
- 6
|
238
|
+
requirements:
|
239
|
+
- - ! '>='
|
240
|
+
- !ruby/object:Gem::Version
|
253
241
|
version: 1.8.6
|
254
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
242
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
255
243
|
none: false
|
256
|
-
requirements:
|
257
|
-
- -
|
258
|
-
- !ruby/object:Gem::Version
|
259
|
-
|
260
|
-
segments:
|
261
|
-
- 0
|
262
|
-
version: "0"
|
244
|
+
requirements:
|
245
|
+
- - ! '>='
|
246
|
+
- !ruby/object:Gem::Version
|
247
|
+
version: '0'
|
263
248
|
requirements: []
|
264
|
-
|
265
249
|
rubyforge_project:
|
266
|
-
rubygems_version: 1.8.
|
250
|
+
rubygems_version: 1.8.19
|
267
251
|
signing_key:
|
268
252
|
specification_version: 3
|
269
253
|
summary: Ruby Bindings for LibXML2
|
270
|
-
test_files:
|
254
|
+
test_files:
|
271
255
|
- test/tc_attr.rb
|
272
256
|
- test/tc_attributes.rb
|
273
257
|
- test/tc_attr_decl.rb
|