-
Notifications
You must be signed in to change notification settings - Fork 22
/
kitchen-vra.gemspec
29 lines (24 loc) · 1.06 KB
/
kitchen-vra.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
# frozen_string_literal: true
lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "kitchen/driver/vra_version"
Gem::Specification.new do |spec|
spec.name = "kitchen-vra"
spec.version = Kitchen::Driver::VRA_VERSION
spec.authors = ["Chef Commmunity Tools Team"]
spec.email = ["[email protected]"]
spec.summary = "A Test Kitchen driver for VMware vRealize Automation (vRA)"
spec.description = spec.summary
spec.homepage = "https://github.com/test-kitchen/kitchen-vra"
spec.license = "Apache-2.0"
spec.files = `git ls-files -z`.split("\x0")
spec.executables = []
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.required_ruby_version = ">= 3.1"
spec.add_dependency "test-kitchen"
spec.add_dependency "vmware-vra", "~> 3.0", ">= 3.2.0" # 3.0 required for vRA 8.x
spec.add_dependency "highline"
spec.add_dependency "rack", ">= 1.6", "< 4.0"
spec.add_dependency "ffi-yajl", ">= 2.2.3", "< 3.1.0"
end