forked from inspec/kitchen-inspec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
kitchen-inspec.gemspec
23 lines (20 loc) · 967 Bytes
/
kitchen-inspec.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# encoding: utf-8
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "kitchen/verifier/inspec_version"
Gem::Specification.new do |spec|
spec.name = "kitchen-inspec"
spec.version = Kitchen::Verifier::INSPEC_VERSION
spec.license = "Apache-2.0"
spec.authors = ["Chef Software, Inc."]
spec.email = ["[email protected]"]
spec.summary = "A Test Kitchen Verifier for InSpec"
spec.description = spec.summary
spec.homepage = "https://github.com/inspec/kitchen-inspec"
spec.files = `git ls-files -z`.split("\x0").grep(/LICENSE|^lib/)
spec.require_paths = ["lib"]
spec.required_ruby_version = ">= 2.3.0"
spec.add_dependency "inspec", ">= 2.2.64", "< 5.0" # 2.2.64 is required for plugin v2 support
spec.add_dependency "test-kitchen", ">= 2.7", "< 3" # 2.7 introduced no_parallel_for for verifiers
spec.add_dependency "hashie", "~> 3.4"
end