inspec/inspec.gemspec

39 lines
1.6 KiB
Ruby
Raw Normal View History

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
2015-10-26 03:04:18 +00:00
require 'inspec/version'
Gem::Specification.new do |spec|
2015-10-26 03:04:18 +00:00
spec.name = 'inspec'
spec.version = Inspec::VERSION
2015-09-03 21:18:28 +00:00
spec.authors = ['Dominik Richter']
2015-10-26 03:04:18 +00:00
spec.email = ['dominik.richter@gmail.com']
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.'
2015-11-03 08:25:24 +00:00
spec.homepage = 'https://github.com/chef/inspec'
spec.license = 'Apache-2.0'
2015-11-12 23:47:01 +00:00
spec.files = %w{
README.md Rakefile MAINTAINERS.toml MAINTAINERS.md LICENSE inspec.gemspec
Gemfile CHANGELOG.md .rubocop.yml
} + Dir.glob(
'{bin,docs,examples,lib,tasks,test}/**/*', File::FNM_DOTMATCH
).reject { |f| File.directory?(f) }
spec.executables = %w{ inspec }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
2015-09-03 21:18:28 +00:00
spec.require_paths = ['lib']
2016-04-18 09:39:52 +00:00
spec.add_dependency 'r-train', '~> 0.10.5'
spec.add_dependency 'thor', '~> 0.19'
spec.add_dependency 'json', '~> 1.8'
spec.add_dependency 'rainbow', '~> 2'
spec.add_dependency 'method_source', '~> 0.8'
spec.add_dependency 'rubyzip', '~> 1.1'
spec.add_dependency 'rspec', '~> 3'
spec.add_dependency 'rspec-its', '~> 1.2'
2015-11-03 09:15:20 +00:00
spec.add_dependency 'pry', '~> 0'
spec.add_development_dependency 'mocha', '~> 1.1'
end