mirror of
https://github.com/inspec/inspec
synced 2024-11-10 07:04:15 +00:00
968f3b2639
* Add a pair of files describing the relationship between the Chef EULA and the Apache 2.0 license, intended to be referenced from rubygems.org
Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com>
* Add message to rubygems.org description of all 4 gems describing relationship between the two licenses
Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com>
* Insert the full text of the Apache 2.0 license into the gem description on the advice of Legal
Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com>
* Update README with message clarifying relationship between the two licenses
Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com>
* Removes the full text of the Apache 2 license, which after clarification is not
in fact required to be in the rubygems description.
This reverts commit 4d02573f59
.
* LINTING - adjust text markers
Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com>
* LINTING - training whitespace
Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com>
* Remove the word 'below' when refering to the inclusion of the Apache 2.0 license
Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com>
* Add Chef-EULA to list of included files to inspec-core
Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com>
---------
Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com>
56 lines
2.5 KiB
Ruby
56 lines
2.5 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 = <<-EOT
|
|
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.
|
|
|
|
Packaged distributions of Progress® Chef® products obtained from RubyGems are made available pursuant to the Progress Chef EULA at https://www.chef.io/end-user-license-agreement, unless there is an executed agreement in effect between you and Progress that covers the Progress Chef products ("Master Agreement"), in which case the Master Agreement shall govern.
|
|
|
|
Source code obtained from the Chef GitHub repository is made available under Apache-2.0, a copy of which is included.
|
|
|
|
EOT
|
|
|
|
spec.homepage = "https://github.com/inspec/inspec"
|
|
spec.license = "LicenseRef-Chef-EULA"
|
|
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"
|
|
|
|
# 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 "train-kubernetes", "~> 0.1"
|
|
|
|
spec.add_dependency "mongo", "= 2.13.2" # 2.14 introduces a broken symlink in mongo-2.14.0/spec/support/ocsp
|
|
|
|
end
|