-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinspec-reporter-tap.gemspec
More file actions
28 lines (22 loc) · 1.03 KB
/
inspec-reporter-tap.gemspec
File metadata and controls
28 lines (22 loc) · 1.03 KB
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
require_relative "lib/inspec-reporter-tap/version"
Gem::Specification.new do |spec|
spec.name = "inspec-reporter-tap"
spec.version = InspecPlugins::TapReporter::VERSION
spec.authors = ["Thomas Heinen"]
spec.email = ["theinen@tecracer.de"]
spec.summary = "InSpec Reporter for the Test Anything Protocol (TAP)"
spec.description = "Plugin following TAP/TAP13"
spec.homepage = "https://github.com/tecracer-chef/inspec-reporter-tap"
spec.license = "Apache-2.0"
spec.files = Dir["lib/**/**/**"]
spec.files += Dir["templates/**/**/**"]
spec.files += ["README.md", "CHANGELOG.md"]
spec.require_paths = ["lib"]
spec.required_ruby_version = ">= 2.6"
# spec.add_dependency "inspec", ">= 4.18.117"
spec.add_development_dependency "bump", "~> 0.9"
spec.add_development_dependency "chefstyle", "~> 0.14"
spec.add_development_dependency "guard", "~> 2.16"
spec.add_development_dependency "mdl", "~> 0.9"
spec.add_development_dependency "rake", "~> 13.0"
end