forked from test-kitchen/test-kitchen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchef-test-kitchen-enterprise.gemspec
41 lines (37 loc) · 2.11 KB
/
chef-test-kitchen-enterprise.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
lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "kitchen/version"
require "English"
Gem::Specification.new do |gem|
gem.name = "chef-test-kitchen-enterprise"
gem.version = Kitchen::VERSION
gem.license = "Apache-2.0"
gem.authors = ["Fletcher Nichol"]
gem.email = ["[email protected]"]
gem.description = "Test Kitchen is an integration tool for developing " \
"and testing infrastructure code and software on " \
"isolated target platforms."
gem.summary = gem.description
gem.homepage = "https://kitchen.ci/"
# The gemfile and gemspec are necessary for appbundler in ChefDK / Workstation
gem.files = %w{LICENSE chef-test-kitchen-enterprise.gemspec Gemfile Rakefile} + Dir.glob("{bin,lib,templates,support}/**/*")
gem.executables = %w{kitchen}
gem.require_paths = ["lib"]
gem.required_ruby_version = ">= 3.1"
gem.add_dependency "bcrypt_pbkdf", "~> 1.0" # ed25519 ssh key support
gem.add_dependency "chef-utils", ">= 16.4.35"
gem.add_dependency "ed25519", "~> 1.2" # ed25519 ssh key support
gem.add_dependency "mixlib-install", "~> 3.6"
gem.add_dependency "mixlib-shellout", ">= 1.2", "< 4.0"
gem.add_dependency "net-scp", ">= 1.1", "< 5.0" # pinning until we can confirm 4+ works
gem.add_dependency "net-ssh", ">= 2.9", "< 8.0" # pinning until we can confirm 8+ works
gem.add_dependency "net-ssh-gateway", ">= 1.2", "< 3.0" # pinning until we can confirm 3+ works
gem.add_dependency "thor", ">= 0.19", "< 1.3.0" # downgrading thor bec inspec-core depends on < 1.3.0
gem.add_dependency "winrm", "~> 2.0"
gem.add_dependency "winrm-elevated", "~> 1.0"
gem.add_dependency "winrm-fs", "~> 1.1"
# Required to run the Chef provisioner local license check for remote systems
# TK is not under Chef EULA
gem.add_dependency "license-acceptance", ">= 1.0.11", "< 3.0" # pinning until we can confirm 3+ works
gem.add_dependency "chef-licensing", "~> 1.0"
end