From 7bc4b5f17f044afadd6899fbe0d1bbe03aa40a6d Mon Sep 17 00:00:00 2001 From: Hiroshi SHIBATA Date: Tue, 4 Jun 2024 15:56:38 +0900 Subject: [PATCH] [ruby/win32ole] Added missing extensions https://github.com/ruby/win32ole/commit/8456e8830e --- ext/win32ole/win32ole.gemspec | 1 + 1 file changed, 1 insertion(+) diff --git a/ext/win32ole/win32ole.gemspec b/ext/win32ole/win32ole.gemspec index 625916ae17..425942d5a0 100644 --- a/ext/win32ole/win32ole.gemspec +++ b/ext/win32ole/win32ole.gemspec @@ -30,5 +30,6 @@ Gem::Specification.new do |spec| spec.files = IO.popen(%w[git ls-files -z --] + pathspecs, chdir: __dir__, err: IO::NULL, exception: false, &:read).split("\x0") spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } + spec.extensions = "ext/win32ole/extconf.rb" spec.require_paths = ["lib"] end