libxslt-ruby 1.0.8 → 1.0.9
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGES +5 -1
- data/Rakefile +5 -2
- data/ext/libxslt/extconf.rb +2 -2
- data/ext/libxslt/version.h +2 -2
- metadata +34 -52
data/CHANGES
CHANGED
@@ -1,3 +1,8 @@
|
|
1
|
+
== 1.0.9 / 2012-03-17 Charlie Savage
|
2
|
+
|
3
|
+
* Build fix for library inclusion order (Andrew Watts)
|
4
|
+
* Add pkg directory to gitignore (Travis Warlick)
|
5
|
+
|
1
6
|
== 1.0.8 / 2011-09-03 Charlie Savage
|
2
7
|
|
3
8
|
* Don't depend on exported data from libxml-ruby, doesn't work with VC++.
|
@@ -125,7 +130,6 @@
|
|
125
130
|
|
126
131
|
* Fixed multiple symbol declarations for -fno-common
|
127
132
|
|
128
|
-
|
129
133
|
== 0.4.0 / 2003-12-15 Martin Povolny <martin@solnet.cz>
|
130
134
|
|
131
135
|
* libxslt.c: added call to exsltRegisterAll to enable exslt extensions
|
data/Rakefile
CHANGED
@@ -22,7 +22,11 @@ Rake::ExtensionTask.new do |ext|
|
|
22
22
|
ext.name = SO_NAME
|
23
23
|
ext.ext_dir = "ext/libxslt"
|
24
24
|
ext.lib_dir = "lib/#{RUBY_VERSION.sub(/\.\d$/, '')}"
|
25
|
-
|
25
|
+
|
26
|
+
ext.config_options << "--with-zlib-dir=C:/MinGW/local"
|
27
|
+
ext.config_options << "--with-xml2-include=C:/MinGW/local/include/libxml2"
|
28
|
+
ext.config_options << "--with-xslt-include=C:/MinGW/local/include/libxslt"
|
29
|
+
ext.config_options << "--with-exslt-include=C:/MinGW/local/include/libexslt"
|
26
30
|
|
27
31
|
ENV.each do |key, val|
|
28
32
|
next unless key =~ /\Awith_(\w+)\z/i
|
@@ -33,7 +37,6 @@ Rake::ExtensionTask.new do |ext|
|
|
33
37
|
warn "No such directory: #{opt}: #{path}"
|
34
38
|
end
|
35
39
|
end
|
36
|
-
puts ext.config_options
|
37
40
|
end
|
38
41
|
|
39
42
|
# Setup generic gem
|
data/ext/libxslt/extconf.rb
CHANGED
@@ -16,8 +16,8 @@ def crash(str)
|
|
16
16
|
end
|
17
17
|
|
18
18
|
# Directories
|
19
|
-
dir_config('zlib')
|
20
19
|
dir_config('iconv')
|
20
|
+
dir_config('zlib')
|
21
21
|
dir_config('xml2')
|
22
22
|
dir_config('xslt')
|
23
23
|
dir_config('exslt')
|
@@ -133,7 +133,7 @@ paths = ["#{gem_spec.full_gem_path}/lib",
|
|
133
133
|
# No need to link xml_ruby on OS X
|
134
134
|
unless Config::CONFIG['host_os'].match(/darwin/)
|
135
135
|
# Hack to make sure ruby library is *after* xml_ruby library
|
136
|
-
$LIBS
|
136
|
+
$LIBS = "#{$LIBRUBYARG_STATIC} #{$LIBS}"
|
137
137
|
|
138
138
|
libraries = ["xml_ruby", # Linux
|
139
139
|
":libxml_ruby.so", # mingw
|
data/ext/libxslt/version.h
CHANGED
metadata
CHANGED
@@ -1,47 +1,40 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: libxslt-ruby
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.9
|
5
5
|
prerelease:
|
6
|
-
segments:
|
7
|
-
- 1
|
8
|
-
- 0
|
9
|
-
- 8
|
10
|
-
version: 1.0.8
|
11
6
|
platform: ruby
|
12
|
-
authors:
|
7
|
+
authors:
|
13
8
|
- Charlie Savage
|
14
9
|
autorequire:
|
15
10
|
bindir: bin
|
16
11
|
cert_chain: []
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
- !ruby/object:Gem::Dependency
|
12
|
+
date: 2012-03-18 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
21
15
|
name: libxml-ruby
|
22
|
-
|
23
|
-
requirement: &id001 !ruby/object:Gem::Requirement
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
24
17
|
none: false
|
25
|
-
requirements:
|
26
|
-
- -
|
27
|
-
- !ruby/object:Gem::Version
|
28
|
-
hash: 3
|
29
|
-
segments:
|
30
|
-
- 2
|
31
|
-
- 2
|
32
|
-
- 2
|
18
|
+
requirements:
|
19
|
+
- - ! '>='
|
20
|
+
- !ruby/object:Gem::Version
|
33
21
|
version: 2.2.2
|
34
22
|
type: :runtime
|
35
|
-
|
36
|
-
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ! '>='
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: 2.2.2
|
30
|
+
description: ! " The Libxslt-Ruby project provides Ruby language bindings for the
|
31
|
+
GNOME\n XSLT C library. It is free software, released under the MIT License.\n"
|
37
32
|
email: libxml-devel@rubyforge.org
|
38
33
|
executables: []
|
39
|
-
|
40
|
-
extensions:
|
34
|
+
extensions:
|
41
35
|
- ext/libxslt/extconf.rb
|
42
36
|
extra_rdoc_files: []
|
43
|
-
|
44
|
-
files:
|
37
|
+
files:
|
45
38
|
- CHANGES
|
46
39
|
- LICENSE
|
47
40
|
- Rakefile
|
@@ -76,41 +69,30 @@ files:
|
|
76
69
|
- ext/libxslt/extconf.rb
|
77
70
|
homepage: http://libxslt.rubyforge.org/
|
78
71
|
licenses: []
|
79
|
-
|
80
72
|
post_install_message:
|
81
73
|
rdoc_options: []
|
82
|
-
|
83
|
-
require_paths:
|
74
|
+
require_paths:
|
84
75
|
- lib
|
85
76
|
- ext/libxslt
|
86
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
77
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
87
78
|
none: false
|
88
|
-
requirements:
|
89
|
-
- -
|
90
|
-
- !ruby/object:Gem::Version
|
91
|
-
hash: 59
|
92
|
-
segments:
|
93
|
-
- 1
|
94
|
-
- 8
|
95
|
-
- 6
|
79
|
+
requirements:
|
80
|
+
- - ! '>='
|
81
|
+
- !ruby/object:Gem::Version
|
96
82
|
version: 1.8.6
|
97
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
83
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
98
84
|
none: false
|
99
|
-
requirements:
|
100
|
-
- -
|
101
|
-
- !ruby/object:Gem::Version
|
102
|
-
|
103
|
-
segments:
|
104
|
-
- 0
|
105
|
-
version: "0"
|
85
|
+
requirements:
|
86
|
+
- - ! '>='
|
87
|
+
- !ruby/object:Gem::Version
|
88
|
+
version: '0'
|
106
89
|
requirements: []
|
107
|
-
|
108
90
|
rubyforge_project: libxslt-ruby
|
109
|
-
rubygems_version: 1.8.
|
91
|
+
rubygems_version: 1.8.19
|
110
92
|
signing_key:
|
111
93
|
specification_version: 3
|
112
94
|
summary: Ruby libxslt bindings
|
113
|
-
test_files:
|
95
|
+
test_files:
|
114
96
|
- test/test_deprecated.rb
|
115
97
|
- test/test_exslt.rb
|
116
98
|
- test/test_helper.rb
|