nokogiri 1.4.4-x86-mswin32 → 1.4.4.1-x86-mswin32

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of nokogiri might be problematic. Click here for more details.

data/Rakefile CHANGED
@@ -13,6 +13,7 @@ CROSS_DIR = File.join(File.dirname(__FILE__), 'tmp', 'cross')
13
13
 
14
14
  # Make sure hoe-debugging is installed
15
15
  Hoe.plugin :debugging
16
+ Hoe.plugin :git
16
17
 
17
18
  HOE = Hoe.spec 'nokogiri' do
18
19
  developer('Aaron Patterson', 'aaronp@rubyforge.org')
Binary file
Binary file
@@ -1,6 +1,6 @@
1
1
  module Nokogiri
2
2
  # The version of Nokogiri you are using
3
- VERSION = '1.4.4'
3
+ VERSION = '1.4.4.1'
4
4
 
5
5
  # More complete version information about libxml
6
6
  VERSION_INFO = {}
@@ -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: 15
4
+ hash: 109
5
5
  prerelease: false
6
6
  segments:
7
7
  - 1
8
8
  - 4
9
9
  - 4
10
- version: 1.4.4
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-16 00:00:00 -05:00
20
+ date: 2010-11-17 00:00:00 -05:00
20
21
  default_executable:
21
22
  dependencies:
22
23
  - !ruby/object:Gem::Dependency