-
Notifications
You must be signed in to change notification settings - Fork 0
/
chef.gemspec
82 lines (71 loc) · 3.61 KB
/
chef.gemspec
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
$:.unshift(File.dirname(__FILE__) + "/lib")
vs_path = File.expand_path("chef-utils/lib/chef-utils/version_string.rb", __dir__)
if File.exist?(vs_path)
# this is the moral equivalent of a require_relative since bundler makes require_relative here fail hard
eval(IO.read(vs_path))
else
# if the path doesn't exist then we're just in the wild gem and not in the git repo
require "chef-utils/version_string"
end
require "chef/version"
Gem::Specification.new do |s|
s.name = "chef"
s.version = Chef::VERSION
s.platform = Gem::Platform::RUBY
s.extra_rdoc_files = ["README.md", "LICENSE" ]
s.summary = "A systems integration framework, built to bring the benefits of configuration management to your entire infrastructure."
s.description = s.summary
s.license = "Apache-2.0"
s.author = "Adam Jacob"
s.email = "[email protected]"
s.homepage = "https://www.chef.io"
s.required_ruby_version = ">= 2.6.0"
s.add_dependency "chef-config", "= #{Chef::VERSION}"
s.add_dependency "chef-utils", "= #{Chef::VERSION}"
s.add_dependency "train-core", "~> 3.2", ">= 3.2.28" # 3.2.28 fixes sudo prompts. See https://github.com/chef/chef/pull/9635
s.add_dependency "train-winrm", ">= 0.2.5"
s.add_dependency "train-rest", ">= 0.4.1" # target mode with rest APIs
s.add_dependency "license-acceptance", ">= 1.0.5", "< 3"
s.add_dependency "mixlib-cli", ">= 2.1.1", "< 3.0"
s.add_dependency "mixlib-log", ">= 2.0.3", "< 4.0"
s.add_dependency "mixlib-authentication", ">= 2.1", "< 4"
s.add_dependency "mixlib-shellout", ">= 3.1.1", "< 4.0"
s.add_dependency "mixlib-archive", ">= 0.4", "< 2.0"
s.add_dependency "ohai", "~> 18.0"
s.add_dependency "inspec-core", "~> 4.23"
s.add_dependency "ffi", ">= 1.5.0"
s.add_dependency "ffi-yajl", "~> 2.2"
s.add_dependency "net-sftp", ">= 2.1.2", "< 4.0" # remote_file resource
s.add_dependency "net-ftp" # remote_file resource
s.add_dependency "erubis", "~> 2.7" # template resource / cookbook syntax check
s.add_dependency "diff-lcs", ">= 1.2.4", "!= 1.4.0", "< 1.6.0" # 1.4 breaks output. Used in lib/chef/util/diff
s.add_dependency "ffi-libarchive", "~> 1.0", ">= 1.0.3" # archive_file resource
s.add_dependency "chef-zero", ">= 14.0.11"
s.add_dependency "chef-vault" # chef-vault resources and helpers
s.add_dependency "plist", "~> 3.2" # launchd, dscl/mac user, macos_userdefaults, osx_profile and plist resources
s.add_dependency "iniparse", "~> 1.4" # systemd_unit resource
s.add_dependency "addressable"
s.add_dependency "syslog-logger", "~> 1.6"
s.add_dependency "uuidtools", ">= 2.1.5", "< 3.0" # osx_profile resource
s.add_dependency "unf_ext", "< 0.0.8.1" # temporary until it loads properly on Windows
s.add_dependency "corefoundation", "~> 0.3.4" # macos_userdefaults resource
s.add_dependency "proxifier", "~> 1.0"
s.add_dependency "aws-sdk-s3", "~> 1.91" # s3 recipe-url support
s.add_dependency "aws-sdk-secretsmanager", "~> 1.46"
s.add_dependency "vault", "~> 0.16" # hashi vault official client gem
s.bindir = "bin"
s.executables = %w{ }
s.require_paths = %w{ lib }
s.files = %w{Gemfile Rakefile LICENSE README.md} +
Dir.glob("{lib,spec}/**/*", File::FNM_DOTMATCH).reject { |f| File.directory?(f) } +
Dir.glob("*.gemspec") +
Dir.glob("tasks/rspec.rb")
s.metadata = {
"bug_tracker_uri" => "https://github.com/chef/chef/issues",
"changelog_uri" => "https://github.com/chef/chef/blob/main/CHANGELOG.md",
"documentation_uri" => "https://docs.chef.io/",
"homepage_uri" => "https://www.chef.io",
"mailing_list_uri" => "https://discourse.chef.io/",
"source_code_uri" => "https://github.com/chef/chef/",
}
end