libxslt-ruby 0.9.7 → 0.9.8
Sign up to get free protection for your applications and to get access to all the features.
- data/ext/libxslt/conftest.c +3 -0
- data/ext/libxslt/extconf.rb +7 -7
- data/ext/libxslt/version.h +2 -2
- metadata +14 -5
data/ext/libxslt/extconf.rb
CHANGED
@@ -122,13 +122,13 @@ EOL
|
|
122
122
|
end
|
123
123
|
|
124
124
|
# This doens't actually work - means libxslt can't find libxml...
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
125
|
+
unless (have_library('xml_ruby', 'rxml_document_wrap') or
|
126
|
+
have_library(':libxml_ruby.so', 'rxml_document_wrap'))
|
127
|
+
crash(<<EOL)
|
128
|
+
need libxml-ruby
|
129
|
+
Install libxml-ruby first.
|
130
|
+
EOL
|
131
|
+
end
|
132
132
|
|
133
133
|
create_header()
|
134
134
|
create_makefile("libxslt_ruby")
|
data/ext/libxslt/version.h
CHANGED
metadata
CHANGED
@@ -1,12 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: libxslt-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
|
4
|
+
hash: 43
|
5
|
+
prerelease:
|
5
6
|
segments:
|
6
7
|
- 0
|
7
8
|
- 9
|
8
|
-
-
|
9
|
-
version: 0.9.
|
9
|
+
- 8
|
10
|
+
version: 0.9.8
|
10
11
|
platform: ruby
|
11
12
|
authors:
|
12
13
|
- Charlie Savage
|
@@ -14,16 +15,18 @@ autorequire:
|
|
14
15
|
bindir: bin
|
15
16
|
cert_chain: []
|
16
17
|
|
17
|
-
date:
|
18
|
+
date: 2011-01-18 00:00:00 -07:00
|
18
19
|
default_executable:
|
19
20
|
dependencies:
|
20
21
|
- !ruby/object:Gem::Dependency
|
21
22
|
name: libxml-ruby
|
22
23
|
prerelease: false
|
23
24
|
requirement: &id001 !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
24
26
|
requirements:
|
25
27
|
- - ">="
|
26
28
|
- !ruby/object:Gem::Version
|
29
|
+
hash: 51
|
27
30
|
segments:
|
28
31
|
- 0
|
29
32
|
- 9
|
@@ -52,6 +55,7 @@ files:
|
|
52
55
|
- ext/libxslt/libxslt.h
|
53
56
|
- ext/libxslt/ruby_xslt_stylesheet.h
|
54
57
|
- ext/libxslt/version.h
|
58
|
+
- ext/libxslt/conftest.c
|
55
59
|
- ext/libxslt/libxslt.c
|
56
60
|
- ext/libxslt/ruby_xslt_stylesheet.c
|
57
61
|
- ext/mingw/Rakefile
|
@@ -67,6 +71,7 @@ files:
|
|
67
71
|
- test/test_libxslt.rb
|
68
72
|
- test/test_stylesheet.rb
|
69
73
|
- test/test_suite.rb
|
74
|
+
- ext/libxslt/extconf.rb
|
70
75
|
has_rdoc: true
|
71
76
|
homepage: http://libxslt.rubyforge.org/
|
72
77
|
licenses: []
|
@@ -78,25 +83,29 @@ require_paths:
|
|
78
83
|
- lib
|
79
84
|
- ext/libxslt
|
80
85
|
required_ruby_version: !ruby/object:Gem::Requirement
|
86
|
+
none: false
|
81
87
|
requirements:
|
82
88
|
- - ">="
|
83
89
|
- !ruby/object:Gem::Version
|
90
|
+
hash: 63
|
84
91
|
segments:
|
85
92
|
- 1
|
86
93
|
- 8
|
87
94
|
- 4
|
88
95
|
version: 1.8.4
|
89
96
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
97
|
+
none: false
|
90
98
|
requirements:
|
91
99
|
- - ">="
|
92
100
|
- !ruby/object:Gem::Version
|
101
|
+
hash: 3
|
93
102
|
segments:
|
94
103
|
- 0
|
95
104
|
version: "0"
|
96
105
|
requirements: []
|
97
106
|
|
98
107
|
rubyforge_project: libxslt-ruby
|
99
|
-
rubygems_version: 1.
|
108
|
+
rubygems_version: 1.4.2
|
100
109
|
signing_key:
|
101
110
|
specification_version: 3
|
102
111
|
summary: Ruby libxslt bindings
|