libxml-ruby 0.5.3 → 0.5.4
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/ext/libxml/version.h +4 -4
- data/setup.rb +3 -0
- metadata +19 -8
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.5.
|
1
|
+
0.5.4 stable (2008-03-26)
|
data/ext/libxml/version.h
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 "0.5.
|
5
|
-
#define RUBY_LIBXML_VERNUM
|
4
|
+
#define RUBY_LIBXML_VERSION "0.5.4"
|
5
|
+
#define RUBY_LIBXML_VERNUM 540
|
6
6
|
#define RUBY_LIBXML_VER_MAJ 0
|
7
7
|
#define RUBY_LIBXML_VER_MIN 5
|
8
|
-
#define RUBY_LIBXML_VER_MIC
|
9
|
-
#define RUBY_LIBXML_VER_PATCH
|
8
|
+
#define RUBY_LIBXML_VER_MIC 4
|
9
|
+
#define RUBY_LIBXML_VER_PATCH 0
|
data/setup.rb
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: 0.5.
|
4
|
+
version: 0.5.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dan Janwoski <danj at 3skel.com>
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2008-
|
12
|
+
date: 2008-03-26 00:00:00 -04:00
|
13
13
|
default_executable:
|
14
14
|
dependencies: []
|
15
15
|
|
@@ -17,10 +17,17 @@ description: LibXML-Ruby provides bindings to the GNU LibXML2 library.
|
|
17
17
|
email: danj at 3skel.com
|
18
18
|
executables: []
|
19
19
|
|
20
|
-
extensions:
|
21
|
-
|
22
|
-
extra_rdoc_files:
|
23
|
-
|
20
|
+
extensions:
|
21
|
+
- ext/libxml/extconf.rb
|
22
|
+
extra_rdoc_files:
|
23
|
+
- README
|
24
|
+
- Rakefile
|
25
|
+
- MANIFEST
|
26
|
+
- NOTES
|
27
|
+
- CHANGES
|
28
|
+
- TODO
|
29
|
+
- LICENSE
|
30
|
+
- VERSION
|
24
31
|
files:
|
25
32
|
- Rakefile
|
26
33
|
- MANIFEST
|
@@ -163,8 +170,12 @@ files:
|
|
163
170
|
has_rdoc: true
|
164
171
|
homepage: http://libxml.rubyforge.org
|
165
172
|
post_install_message:
|
166
|
-
rdoc_options:
|
167
|
-
|
173
|
+
rdoc_options:
|
174
|
+
- --inline-source
|
175
|
+
- --title
|
176
|
+
- LibXML-Ruby
|
177
|
+
- --main
|
178
|
+
- README
|
168
179
|
require_paths:
|
169
180
|
- lib
|
170
181
|
- ext/libxml
|