-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Expand file tree
/
Copy pathchef-universal-mingw-ucrt.gemspec
More file actions
30 lines (25 loc) · 1.47 KB
/
chef-universal-mingw-ucrt.gemspec
File metadata and controls
30 lines (25 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# rubocop:disable Chef/Ruby/GemspecLicense
# License is in the included gemspec.
gemspec = Gem::Specification.load(File.expand_path("chef.gemspec", __dir__))
# In situations like Dependabot, the above returns nil, so create an empty
# gemspec so that the rest of this file doesn't error out trying to call
# methods on nil
gemspec = Gem::Specification.new unless gemspec
gemspec.platform = Gem::Platform.new(%w{universal mingw-ucrt})
gemspec.add_dependency "win32-api", "~> 1.10.0"
gemspec.add_dependency "win32-event", "~> 0.6.1"
# TODO: Relax this pin and make the necessary updaets. The issue originally
# leading to this pin has been fixed in 0.6.5.
gemspec.add_dependency "win32-eventlog", "0.6.7"
gemspec.add_dependency "win32-mmap", "~> 0.4.1"
gemspec.add_dependency "win32-mutex", "~> 0.4.2"
gemspec.add_dependency "win32-process", "~> 0.9"
gemspec.add_dependency "win32-service", ">= 2.1.5", "< 3.0"
gemspec.add_dependency "wmi-lite", "~> 1.0"
gemspec.add_dependency "win32-taskscheduler", "~> 2.0"
gemspec.add_dependency "iso8601", ">= 0.12.1", "< 0.14" # validate 0.14 when it comes out
gemspec.add_dependency "win32-certstore", "~> 0.6.15" # 0.5+ required for specifying user vs. system store
gemspec.add_dependency "chef-powershell", "~> 18.6.6" # The guts of the powershell_exec code have been moved to its own gem, chef-powershell. It's part of the chef-powershell-shim repo.
gemspec.extensions << "ext/win32-eventlog/Rakefile"
gemspec.files += Dir.glob("{distro,ext}/**/*")
gemspec