-
Notifications
You must be signed in to change notification settings - Fork 0
/
kitchen-static.gemspec
29 lines (23 loc) · 1.07 KB
/
kitchen-static.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
lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "kitchen/driver/static_version.rb"
Gem::Specification.new do |spec|
spec.name = "kitchen-static"
spec.version = Kitchen::Driver::STATIC_VERSION
spec.authors = ["Thomas Heinen"]
spec.email = ["[email protected]"]
spec.summary = "Test Kitchen driver for static hosts"
spec.description = "Test Kitchen driver for static hosts"
spec.homepage = "https://github.com/tecracer-theinen/kitchen-static"
spec.license = "Apache-2.0"
spec.files = Dir["LICENSE", "lib/**/*"]
spec.require_paths = ["lib"]
spec.required_ruby_version = ">= 2.3"
spec.add_dependency "test-kitchen", ">= 1.16", "< 3.0"
spec.add_dependency "mixlib-shellout", "~> 3.0"
spec.add_development_dependency "bundler", ">= 1.16"
spec.add_development_dependency "guard", "~> 2.16"
spec.add_development_dependency "guard-rake", "~> 1.0"
spec.add_development_dependency "rake", "~> 12.0"
spec.add_development_dependency "yard", "~> 0.9"
end