summaryrefslogtreecommitdiff
path: root/mixlib-shellout-windows.gemspec
diff options
context:
space:
mode:
authorKartik Null Cating-Subramanian <ksubramanian@chef.io>2015-04-20 20:33:50 -0400
committerKartik Null Cating-Subramanian <ksubramanian@chef.io>2015-04-24 15:06:33 -0400
commit904bc769ea16848aa089efb8526d2bb249e43901 (patch)
treeeff151454318810525f82a9d91476cb11b642fca /mixlib-shellout-windows.gemspec
parent079cf95882c6b9359af2b271dd94817760fac6f7 (diff)
downloadmixlib-shellout-904bc769ea16848aa089efb8526d2bb249e43901.tar.gz
Clean up Rakefile/platform dependent gem generation.ksubrama/win64
Use the "universal" platform when building the windows gems to let us simultaneously support 32 and 64 bit windows builds.
Diffstat (limited to 'mixlib-shellout-windows.gemspec')
-rw-r--r--mixlib-shellout-windows.gemspec8
1 files changed, 8 insertions, 0 deletions
diff --git a/mixlib-shellout-windows.gemspec b/mixlib-shellout-windows.gemspec
new file mode 100644
index 0000000..20c8164
--- /dev/null
+++ b/mixlib-shellout-windows.gemspec
@@ -0,0 +1,8 @@
+gemspec = eval(File.read(File.expand_path("../mixlib-shellout.gemspec", __FILE__)))
+
+gemspec.platform = Gem::Platform.new(["universal", "mingw32"])
+
+gemspec.add_dependency "win32-process", "~> 0.7.5"
+gemspec.add_dependency "windows-pr", "~> 1.2.4"
+
+gemspec