summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorDaniel Berger <djberg96@gmail.com>2015-10-13 07:52:02 -0600
committerDaniel Berger <djberg96@gmail.com>2015-10-13 07:52:02 -0600
commit05242c662e4b4a400b6f44848c090d89a11e6c66 (patch)
tree92108be38dc22ad32fd98ec32d4ecda9eedadf6e /Rakefile
parent3c138cbf94a44f7a6696afdab1ab5149d7541974 (diff)
downloadpry-05242c662e4b4a400b6f44848c090d89a11e6c66.tar.gz
Explicitly set arch to 'universal' for mingw and mswin
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile2
1 files changed, 1 insertions, 1 deletions
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|