libxml-ruby 2.2.0-x86-mingw32 → 2.2.1-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 +4 -0
- data/ext/libxml/libxml_ruby.def +35 -0
- data/ext/libxml/ruby_xml_version.h +3 -3
- data/lib/1.8/libxml_ruby.so +0 -0
- data/lib/1.9/libxml_ruby.so +0 -0
- data/libxml-ruby.gemspec +1 -0
- metadata +5 -4
data/HISTORY
CHANGED
@@ -0,0 +1,35 @@
|
|
1
|
+
LIBRARY libxml_ruby.so
|
2
|
+
EXPORTS
|
3
|
+
Init_libxml_ruby
|
4
|
+
rxml_document_wrap
|
5
|
+
rxml_xpath_to_value
|
6
|
+
rxml_xpath_from_value
|
7
|
+
|
8
|
+
cXMLAttr DATA
|
9
|
+
cXMLAttrDecl DATA
|
10
|
+
cXMLAttributes DATA
|
11
|
+
cXMLDocument DATA
|
12
|
+
cXMLDtd DATA
|
13
|
+
cXMLHtmlParser DATA
|
14
|
+
cXMLHtmlParserContext DATA
|
15
|
+
cXMLNamespace DATA
|
16
|
+
cXMLNamespaces DATA
|
17
|
+
cXMLNode DATA
|
18
|
+
cXMLParser DATA
|
19
|
+
cXMLParserContext DATA
|
20
|
+
cXMLReader DATA
|
21
|
+
cXMLRelaxNG DATA
|
22
|
+
cXMLSaxParser DATA
|
23
|
+
cXMLSchema DATA
|
24
|
+
cXMLXInclude DATA
|
25
|
+
cXMLXPathContext DATA
|
26
|
+
cXMLXPathExpression DATA
|
27
|
+
cXMLXPathObject DATA
|
28
|
+
cXMLXPointer DATA
|
29
|
+
eXMLError DATA
|
30
|
+
mLibXML DATA
|
31
|
+
mXML DATA
|
32
|
+
mXMLEncoding DATA
|
33
|
+
mXMLHtmlParserOptions DATA
|
34
|
+
mXMLParserOptions DATA
|
35
|
+
mXPath DATA
|
@@ -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.2.
|
5
|
-
#define RUBY_LIBXML_VERNUM
|
4
|
+
#define RUBY_LIBXML_VERSION "2.2.1"
|
5
|
+
#define RUBY_LIBXML_VERNUM 221
|
6
6
|
#define RUBY_LIBXML_VER_MAJ 2
|
7
7
|
#define RUBY_LIBXML_VER_MIN 2
|
8
|
-
#define RUBY_LIBXML_VER_MIC
|
8
|
+
#define RUBY_LIBXML_VER_MIC 1
|
9
9
|
#define RUBY_LIBXML_VER_PATCH 0
|
data/lib/1.8/libxml_ruby.so
CHANGED
Binary file
|
data/lib/1.9/libxml_ruby.so
CHANGED
Binary file
|
data/libxml-ruby.gemspec
CHANGED
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: 5
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 2
|
8
8
|
- 2
|
9
|
-
-
|
10
|
-
version: 2.2.
|
9
|
+
- 1
|
10
|
+
version: 2.2.1
|
11
11
|
platform: x86-mingw32
|
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-08-
|
23
|
+
date: 2011-08-14 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"
|
@@ -39,6 +39,7 @@ files:
|
|
39
39
|
- Rakefile
|
40
40
|
- README.rdoc
|
41
41
|
- setup.rb
|
42
|
+
- ext/libxml/libxml_ruby.def
|
42
43
|
- ext/libxml/extconf.h
|
43
44
|
- ext/libxml/ruby_libxml.h
|
44
45
|
- ext/libxml/ruby_xml.h
|