libxml-ruby 2.2.0 → 2.2.1

Sign up to get free protection for your applications and to get access to all the features.
data/HISTORY CHANGED
@@ -1,5 +1,9 @@
1
1
  = Release History
2
2
 
3
+ == 2.2.1 / 2011-08-13 Charlie Savage
4
+
5
+ * Packaging fix - include the custom .def file in the gem.
6
+
3
7
  == 2.2.0 / 2011-08-09 Charlie Savage
4
8
 
5
9
  * Update encoding support for Ruby 1.9 so that libxml-ruby returns
@@ -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.0"
5
- #define RUBY_LIBXML_VERNUM 220
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 0
8
+ #define RUBY_LIBXML_VER_MIC 1
9
9
  #define RUBY_LIBXML_VER_PATCH 0
@@ -13,6 +13,7 @@ FILES = FileList[
13
13
  'Rakefile',
14
14
  'README.rdoc',
15
15
  'setup.rb',
16
+ 'ext/libxml/*.def',
16
17
  'ext/libxml/*.h',
17
18
  'ext/libxml/*.c',
18
19
  'ext/libxml/*.rb',
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: 7
4
+ hash: 5
5
5
  prerelease:
6
6
  segments:
7
7
  - 2
8
8
  - 2
9
- - 0
10
- version: 2.2.0
9
+ - 1
10
+ version: 2.2.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-08-09 00:00:00 Z
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