From 05242c662e4b4a400b6f44848c090d89a11e6c66 Mon Sep 17 00:00:00 2001 From: Daniel Berger Date: Tue, 13 Oct 2015 07:52:02 -0600 Subject: [PATCH] Explicitly set arch to 'universal' for mingw and mswin --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 7e5d9ea7..47176a4b 100644 --- a/Rakefile +++ b/Rakefile @@ -86,7 +86,7 @@ end namespace platform do spec = modify_base_gemspec do |s| s.add_dependency('win32console', '~> 1.3') - s.platform = Gem::Platform.new [nil, platform, nil] + s.platform = Gem::Platform.new ['universal', platform, nil] end Gem::PackageTask.new(spec) do |pkg|