mirror of
https://github.com/inspec/inspec
synced 2024-11-10 07:04:15 +00:00
b7ddac9dcc
* Added separate waiver file reader and support for csv Signed-off-by: Nikita Mathur <nikita.mathur@chef.io> * Added support for json format waivers Signed-off-by: Nikita Mathur <nikita.mathur@chef.io> * Added support for xls and xlsx Signed-off-by: Nikita Mathur <nikita.mathur@chef.io> * Build issues and updated description of gems Signed-off-by: Nikita Mathur <nikita.mathur@chef.io> * Doc changes for waivers about supports Signed-off-by: Nikita Mathur <nikita.mathur@chef.io> * Fix added to check final options presense in config Signed-off-by: Nikita Mathur <nikita.mathur@chef.io> * Renamed variables from inputs to waivers Signed-off-by: Nikita Mathur <nikita.mathur@chef.io> * Validation changes with other small changes Signed-off-by: Nikita Mathur <nikita.mathur@chef.io> * Headers validation added for json and yaml * Linter issues resolved Signed-off-by: Nikita Mathur <nikita.mathur@chef.io> * Some refactoring and message change Signed-off-by: Nikita Mathur <nikita.mathur@chef.io> * exit code check removed from test cases since not req Signed-off-by: Nikita Mathur <nikita.mathur@chef.io> * Doc change for waiver support for excel by showing example Signed-off-by: Nikita Mathur <nikita.mathur@chef.io> Co-authored-by: Clinton Wolfe <clintoncwolfe@gmail.com>
50 lines
2.1 KiB
Ruby
50 lines
2.1 KiB
Ruby
lib = File.expand_path("lib", __dir__)
|
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
require "inspec/version"
|
|
|
|
Gem::Specification.new do |spec|
|
|
spec.name = "inspec"
|
|
spec.version = Inspec::VERSION
|
|
spec.authors = ["Chef InSpec Team"]
|
|
spec.email = ["inspec@chef.io"]
|
|
spec.summary = "Infrastructure and compliance testing."
|
|
spec.description = "InSpec provides a framework for creating end-to-end infrastructure tests. You can use it for integration or even compliance testing. Create fully portable test profiles and use them in your workflow to ensure stability and security. Integrate InSpec in your change lifecycle for local testing, CI/CD, and deployment verification."
|
|
spec.homepage = "https://github.com/inspec/inspec"
|
|
spec.license = "Apache-2.0"
|
|
spec.require_paths = ["lib"]
|
|
|
|
spec.required_ruby_version = ">= 2.7"
|
|
|
|
# ONLY the aws/azure/gcp files. The rest will come in from inspec-core
|
|
# the gemspec is necessary for appbundler so don't remove it
|
|
spec.files =
|
|
Dir.glob("{{lib,etc}/**/*,Gemfile,inspec.gemspec}")
|
|
.grep(/aws|azure|gcp|gemspec|Gemfile|inspec.gemspec/)
|
|
.reject { |f| File.directory?(f) }
|
|
|
|
spec.add_dependency "inspec-core", "= #{Inspec::VERSION}"
|
|
|
|
spec.add_dependency "train", "~> 3.10"
|
|
|
|
# cookstyle support for inspec check
|
|
# Added here not because they are compiled, but to keep chef-client lightweight
|
|
spec.add_dependency "cookstyle"
|
|
spec.add_dependency "rake"
|
|
|
|
# progress bar streaming reporter plugin support
|
|
spec.add_dependency "progress_bar", "~> 1.3.3"
|
|
|
|
# roo support for reading excel waiver files
|
|
spec.add_dependency "roo", "~> 2.9.0"
|
|
spec.add_dependency "roo-xls" # extension for roo to read xls files
|
|
|
|
# Used for Azure profile until integrated into train
|
|
spec.add_dependency "faraday_middleware", ">= 0.12.2", "< 1.1"
|
|
|
|
# Train plugins we ship with InSpec
|
|
spec.add_dependency "train-habitat", "~> 0.1"
|
|
spec.add_dependency "train-aws", "~> 0.2"
|
|
spec.add_dependency "train-winrm", "~> 0.2"
|
|
spec.add_dependency "mongo", "= 2.13.2" # 2.14 introduces a broken symlink in mongo-2.14.0/spec/support/ocsp
|
|
|
|
end
|