summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn McCrae <jmccrae@chf.io>2022-04-04 14:34:31 -0700
committerJohn McCrae <jmccrae@chf.io>2022-04-04 14:34:31 -0700
commit282a8548ea79a6f0d08fa0159542932bd9bc79ac (patch)
tree2811127374a7e066b18dbc06a0d9a24a21689f37
parent7c3b78747ce82013dfb93b61ba84bf997ac7ee4b (diff)
downloadmixlib-shellout-282a8548ea79a6f0d08fa0159542932bd9bc79ac.tar.gz
Hard Coding the gems in the gemfile to overcome a Ruby 3.1 bug
Signed-off-by: John McCrae <jmccrae@chf.io>
-rw-r--r--mixlib-shellout-universal-mingw-ucrt.gemspec8
1 files changed, 8 insertions, 0 deletions
diff --git a/mixlib-shellout-universal-mingw-ucrt.gemspec b/mixlib-shellout-universal-mingw-ucrt.gemspec
new file mode 100644
index 0000000..4b6fdc7
--- /dev/null
+++ b/mixlib-shellout-universal-mingw-ucrt.gemspec
@@ -0,0 +1,8 @@
+gemspec = instance_eval(File.read(File.expand_path("mixlib-shellout.gemspec", __dir__)))
+
+gemspec.platform = Gem::Platform.new(%w{universal x64-mingw-ucrt})
+gemspec.add_dependency "win32-process", "~> 0.9"
+gemspec.add_runtime_dependency "wmi-lite", "~> 1.0"
+gemspec.add_runtime_dependency "ffi-win32-extensions", "~> 1.0.3"
+
+gemspec