libxml-ruby 2.1.0 → 2.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/HISTORY +4 -0
- data/ext/libxml/extconf.rb +1 -0
- data/ext/libxml/libxml.c +0 -3
- data/ext/libxml/ruby_xml_document.h +1 -6
- data/ext/libxml/ruby_xml_version.h +3 -3
- data/ext/libxml/ruby_xml_xpath.h +3 -3
- metadata +4 -4
data/HISTORY
CHANGED
data/ext/libxml/extconf.rb
CHANGED
data/ext/libxml/libxml.c
CHANGED
@@ -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.1.
|
5
|
-
#define RUBY_LIBXML_VERNUM
|
4
|
+
#define RUBY_LIBXML_VERSION "2.1.1"
|
5
|
+
#define RUBY_LIBXML_VERNUM 211
|
6
6
|
#define RUBY_LIBXML_VER_MAJ 2
|
7
7
|
#define RUBY_LIBXML_VER_MIN 1
|
8
|
-
#define RUBY_LIBXML_VER_MIC
|
8
|
+
#define RUBY_LIBXML_VER_MIC 1
|
9
9
|
#define RUBY_LIBXML_VER_PATCH 0
|
data/ext/libxml/ruby_xml_xpath.h
CHANGED
@@ -5,9 +5,9 @@
|
|
5
5
|
|
6
6
|
extern VALUE mXPath;
|
7
7
|
|
8
|
-
extern VALUE rxml_xpath_to_value(xmlXPathContextPtr, xmlXPathObjectPtr);
|
9
|
-
extern xmlXPathObjectPtr rxml_xpath_from_value(VALUE);
|
10
|
-
|
11
8
|
void rxml_init_xpath(void);
|
12
9
|
|
10
|
+
VALUE rxml_xpath_to_value(xmlXPathContextPtr, xmlXPathObjectPtr);
|
11
|
+
xmlXPathObjectPtr rxml_xpath_from_value(VALUE);
|
12
|
+
|
13
13
|
#endif
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: libxml-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 9
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 2
|
8
8
|
- 1
|
9
|
-
-
|
10
|
-
version: 2.1.
|
9
|
+
- 1
|
10
|
+
version: 2.1.1
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Ross Bamform
|
@@ -20,7 +20,7 @@ autorequire:
|
|
20
20
|
bindir: bin
|
21
21
|
cert_chain: []
|
22
22
|
|
23
|
-
date: 2011-
|
23
|
+
date: 2011-08-01 00:00:00 Z
|
24
24
|
dependencies: []
|
25
25
|
|
26
26
|
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"
|