libxslt-ruby 1.0.8-x86-mingw32 → 1.0.9-x86-mingw32

Sign up to get free protection for your applications and to get access to all the features.
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
@@ -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 += " #{$LIBRUBYARG_STATIC}"
136
+ $LIBS = "#{$LIBRUBYARG_STATIC} #{$LIBS}"
137
137
 
138
138
  libraries = ["xml_ruby", # Linux
139
139
  ":libxml_ruby.so", # mingw
@@ -1,5 +1,5 @@
1
- #define RUBY_LIBXSLT_VERSION "1.0.8"
1
+ #define RUBY_LIBXSLT_VERSION "1.0.9"
2
2
  #define RUBY_LIBXSLT_VERNUM 1
3
3
  #define RUBY_LIBXSLT_VER_MAJ 0
4
- #define RUBY_LIBXSLT_VER_MIN 8
4
+ #define RUBY_LIBXSLT_VER_MIN 9
5
5
  #define RUBY_LIBXSLT_VER_MIC 0
Binary file
Binary file
metadata CHANGED
@@ -1,47 +1,39 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: libxslt-ruby
3
- version: !ruby/object:Gem::Version
4
- hash: 7
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: x86-mingw32
12
- authors:
7
+ authors:
13
8
  - Charlie Savage
14
9
  autorequire:
15
10
  bindir: bin
16
11
  cert_chain: []
17
-
18
- date: 2011-09-03 00:00:00 Z
19
- dependencies:
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
- prerelease: false
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
- version_requirements: *id001
36
- description: " The Libxslt-Ruby project provides Ruby language bindings for the GNOME\n XSLT C library. It is free software, released under the MIT License.\n"
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
34
  extensions: []
41
-
42
35
  extra_rdoc_files: []
43
-
44
- files:
36
+ files:
45
37
  - CHANGES
46
38
  - LICENSE
47
39
  - Rakefile
@@ -80,41 +72,30 @@ files:
80
72
  - lib/libs/libxslt-1.dll
81
73
  homepage: http://libxslt.rubyforge.org/
82
74
  licenses: []
83
-
84
75
  post_install_message:
85
76
  rdoc_options: []
86
-
87
- require_paths:
77
+ require_paths:
88
78
  - lib
89
79
  - ext/libxslt
90
- required_ruby_version: !ruby/object:Gem::Requirement
80
+ required_ruby_version: !ruby/object:Gem::Requirement
91
81
  none: false
92
- requirements:
93
- - - ">="
94
- - !ruby/object:Gem::Version
95
- hash: 59
96
- segments:
97
- - 1
98
- - 8
99
- - 6
82
+ requirements:
83
+ - - ! '>='
84
+ - !ruby/object:Gem::Version
100
85
  version: 1.8.6
101
- required_rubygems_version: !ruby/object:Gem::Requirement
86
+ required_rubygems_version: !ruby/object:Gem::Requirement
102
87
  none: false
103
- requirements:
104
- - - ">="
105
- - !ruby/object:Gem::Version
106
- hash: 3
107
- segments:
108
- - 0
109
- version: "0"
88
+ requirements:
89
+ - - ! '>='
90
+ - !ruby/object:Gem::Version
91
+ version: '0'
110
92
  requirements: []
111
-
112
93
  rubyforge_project: libxslt-ruby
113
- rubygems_version: 1.8.10
94
+ rubygems_version: 1.8.19
114
95
  signing_key:
115
96
  specification_version: 3
116
97
  summary: Ruby libxslt bindings
117
- test_files:
98
+ test_files:
118
99
  - test/test_deprecated.rb
119
100
  - test/test_exslt.rb
120
101
  - test/test_helper.rb