forked from test-kitchen/kitchen-dokken
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkitchen-dokken.gemspec
21 lines (18 loc) · 910 Bytes
/
kitchen-dokken.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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 Dokken'
spec.summary = 'A Test Kitchen Driver that talks to the Docker Remote API and uses Volumes to produce sparse container images'
spec.homepage = 'https://github.com/someara/kitchen-dokken'
spec.license = 'Apache-2.0'
spec.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR).grep(/LICENSE|^lib/)
spec.require_paths = ['lib']
spec.add_dependency 'docker-api', '~> 1.33'
spec.add_dependency 'lockfile', '~> 2.1'
spec.add_dependency 'test-kitchen', '>= 1.15', '< 3'
end