nokogiri 1.4.4-x86-mswin32 → 1.4.4.1-x86-mswin32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of nokogiri might be problematic. Click here for more details.
- data/Rakefile +1 -0
- data/lib/nokogiri/1.8/nokogiri.so +0 -0
- data/lib/nokogiri/1.9/nokogiri.so +0 -0
- data/lib/nokogiri/version.rb +1 -1
- data/tasks/cross_compile.rb +6 -1
- metadata +4 -3
data/Rakefile
CHANGED
Binary file
|
Binary file
|
data/lib/nokogiri/version.rb
CHANGED
data/tasks/cross_compile.rb
CHANGED
@@ -166,8 +166,9 @@ end
|
|
166
166
|
|
167
167
|
desc "build a windows gem without all the ceremony."
|
168
168
|
task "gem:windows" do
|
169
|
-
# check that rake-compiler config contains the right patchlevels of 1.8.6 and 1.9.1
|
170
169
|
rake_compiler_config = YAML.load_file("#{ENV['HOME']}/.rake-compiler/config.yml")
|
170
|
+
|
171
|
+
# check that rake-compiler config contains the right patchlevels of 1.8.6 and 1.9.1. see #279.
|
171
172
|
["1.8.6-p383", "1.9.1-p243"].each do |version|
|
172
173
|
majmin, patchlevel = version.split("-")
|
173
174
|
rbconfig = "rbconfig-#{majmin}"
|
@@ -176,5 +177,9 @@ task "gem:windows" do
|
|
176
177
|
end
|
177
178
|
end
|
178
179
|
|
180
|
+
# verify that --export-all is in the 1.9.1 rbconfig. see #279,#374,#375.
|
181
|
+
rbconfig_191 = rake_compiler_config["rbconfig-1.9.1"]
|
182
|
+
raise "rbconfig #{rbconfig_191} needs --export-all in its DLDFLAGS value" if File.read(rbconfig_191).grep(/CONFIG\["DLDFLAGS"\].*--export-all/).empty?
|
183
|
+
|
179
184
|
system("env PKG_CONFIG_PATH=#{RAKE_COMPILER_PKGCONFIG} RUBY_CC_VERSION=1.8.6:1.9.1 rake cross native gem") || raise("build failed!")
|
180
185
|
end
|
metadata
CHANGED
@@ -1,13 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: nokogiri
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 109
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 1
|
8
8
|
- 4
|
9
9
|
- 4
|
10
|
-
|
10
|
+
- 1
|
11
|
+
version: 1.4.4.1
|
11
12
|
platform: x86-mswin32
|
12
13
|
authors:
|
13
14
|
- Aaron Patterson
|
@@ -16,7 +17,7 @@ autorequire:
|
|
16
17
|
bindir: bin
|
17
18
|
cert_chain: []
|
18
19
|
|
19
|
-
date: 2010-11-
|
20
|
+
date: 2010-11-17 00:00:00 -05:00
|
20
21
|
default_executable:
|
21
22
|
dependencies:
|
22
23
|
- !ruby/object:Gem::Dependency
|