-
Notifications
You must be signed in to change notification settings - Fork 92
/
kitchen-dokken.gemspec
23 lines (19 loc) · 1.01 KB
/
kitchen-dokken.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "kitchen/driver/dokken_version"
Gem::Specification.new do |spec|
spec.name = "kitchen-dokken"
spec.version = Kitchen::Driver::DOKKEN_VERSION
spec.authors = ["Sean OMeara"]
spec.email = ["[email protected]"]
spec.description = "A Test Kitchen Driver for Docker & Chef Infra optimized for rapid testing using Chef Infra docker images"
spec.summary = "A Test Kitchen Driver for Docker & Chef Infra optimized for rapid testing using Chef Infra docker images"
spec.homepage = "https://github.com/test-kitchen/kitchen-dokken"
spec.license = "Apache-2.0"
spec.files = %w{LICENSE kitchen-dokken.gemspec Gemfile Rakefile} + Dir.glob("lib/**/*")
spec.require_paths = ["lib"]
spec.required_ruby_version = ">= 3.1"
spec.add_dependency "docker-api", ">= 1.33", "< 3"
spec.add_dependency "lockfile", "~> 2.1"
spec.add_dependency "test-kitchen", ">= 1.15", "< 4"
end