mirror of
https://github.com/inspec/inspec
synced 2024-11-10 07:04:15 +00:00
add gemspec
Signed-off-by: Dominik Richter <dominik.richter@gmail.com>
This commit is contained in:
parent
44d1f88dda
commit
548a54e8c0
1 changed files with 30 additions and 0 deletions
30
vulcano.gemspec
Normal file
30
vulcano.gemspec
Normal file
|
@ -0,0 +1,30 @@
|
|||
# coding: utf-8
|
||||
lib = File.expand_path('../lib', __FILE__)
|
||||
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
||||
require 'vulcano'
|
||||
|
||||
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_dependency 'thor', '~> 0.19'
|
||||
spec.add_dependency 'json', '~> 1.8'
|
||||
spec.add_dependency 'rainbow', '~> 2'
|
||||
spec.add_dependency 'serverspec', '~> 2.16'
|
||||
end
|
Loading…
Reference in a new issue