mirror of
https://github.com/inspec/inspec
synced 2024-11-23 13:13:22 +00:00
9 lines
438 B
Ruby
9 lines
438 B
Ruby
|
# .gemspec file is added to add plugin details
|
||
|
# These specs are used in plugin list and search command
|
||
|
|
||
|
Gem::Specification.new do |spec|
|
||
|
spec.name = "inspec-reporter-json-min"
|
||
|
spec.summary = "Json-min json reporter plugin"
|
||
|
spec.description = "This plugin provides the `json-min` reporter, which produces test output in JSON format with less detail than the `json` reporter."
|
||
|
spec.license = "Apache-2.0"
|
||
|
end
|