mirror of
https://github.com/inspec/inspec
synced 2024-11-10 15:14:23 +00:00
2938d12be7
Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com>
27 lines
1 KiB
Ruby
27 lines
1 KiB
Ruby
lib = File.expand_path('../lib', __FILE__)
|
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
require 'inspec-bin/version'
|
|
|
|
Gem::Specification.new do |spec|
|
|
spec.name = 'inspec-bin'
|
|
spec.version = InspecBin::VERSION
|
|
spec.authors = ['Chef InSpec Core Engineering ']
|
|
spec.email = ['inspec@chef.io']
|
|
spec.summary = 'Infrastructure and compliance testing.'
|
|
spec.description = 'InSpec executable for inspec gem. Use of this executable may require accepting a license agreement.'
|
|
spec.homepage = 'https://github.com/inspec/inspec/tree/master/inspec-bin'
|
|
spec.license = 'Apache-2.0'
|
|
|
|
spec.require_paths = ['lib']
|
|
spec.required_ruby_version = '>= 2.4'
|
|
|
|
spec.add_dependency 'inspec', "= #{InspecBin::VERSION}"
|
|
spec.add_development_dependency 'rake'
|
|
|
|
spec.files = %w{README.md LICENSE} + Dir.glob('*.gemspec') +
|
|
Dir.glob('{lib,bin}/**/*', File::FNM_DOTMATCH).reject { |f| File.directory?(f) }
|
|
|
|
spec.bindir = 'bin'
|
|
spec.executables = %w{inspec}
|
|
|
|
end
|