mirror of
https://github.com/inspec/inspec
synced 2024-11-10 07:04:15 +00:00
b2e031c056
This project is inspired by Serverspec and all the wonderful contributions that went into it. Thank you all so much! We have used Serverspec as our audit base and have now a slightly different perspective. We hope to continue the spirit on this path. Hopefully both projects will find their way together. Signed-off-by: Dominik Richter <dominik.richter@gmail.com>
34 lines
1.3 KiB
Ruby
34 lines
1.3 KiB
Ruby
# coding: utf-8
|
|
lib = File.expand_path('../lib', __FILE__)
|
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
require 'vulcano/version'
|
|
|
|
Gem::Specification.new do |spec|
|
|
spec.name = "vulcano"
|
|
spec.version = Vulcano::VERSION
|
|
spec.authors = ["Dominik Richter"]
|
|
spec.email = ["dominik@vulcanosec.com"]
|
|
spec.summary = %q{Validate Vulcano compliance checks.}
|
|
spec.description = %q{Validate Vulcano compliance checks.}
|
|
spec.homepage = "https://github.com/..."
|
|
spec.license = "Proprietary"
|
|
|
|
spec.files = `git ls-files -z`.split("\x0")
|
|
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
|
spec.require_paths = ["lib"]
|
|
|
|
spec.add_development_dependency "bundler", "~> 1.5"
|
|
spec.add_development_dependency "minitest", "~> 5.5"
|
|
spec.add_development_dependency "rspec", "~> 3.2"
|
|
spec.add_development_dependency "rake", "~> 10"
|
|
spec.add_development_dependency "pry", "~> 0.10"
|
|
|
|
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.3'
|
|
spec.add_dependency 'winrm'
|
|
end
|