mirror of
https://github.com/inspec/inspec
synced 2024-12-12 22:32:46 +00:00
10 lines
407 B
Ruby
10 lines
407 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-plugin-manager-cli"
|
||
|
spec.summary = "CLI plugin for InSpec"
|
||
|
spec.description = "This is a CLI plugin for InSpec. It uses the Plugins API v2 to create a
|
||
|
series of commands to manage plugins."
|
||
|
spec.license = "Apache-2.0"
|
||
|
end
|