-
Notifications
You must be signed in to change notification settings - Fork 20
/
heimdall_tools.gemspec
46 lines (42 loc) · 1.79 KB
/
heimdall_tools.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# coding: utf-8
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
begin
require 'heimdall_tools/version'
rescue LoadError
nil
end
Gem::Specification.new do |spec|
spec.name = 'heimdall_tools'
spec.version = begin
HeimdallTools::VERSION
rescue StandardError
'0.0.0.1.ENOGVB'
end
spec.authors = ['Robert Thew', 'Rony Xavier', 'Amndeep Singh Mann', 'Aaron Lippold']
spec.email = ['[email protected]']
spec.summary = 'Convert a variety of security product results to HDF'
spec.description = 'Converter utils that can be included as a gem or used from the command line'
spec.homepage = 'https://github.com/mitre/heimdall_tools'
spec.license = 'Apache-2.0'
spec.files = Dir.glob('{lib,test,exe}/**/*') + %w{Guardfile LICENSE.md Rakefile README.md}
spec.bindir = 'exe'
spec.executables << 'heimdall_tools'
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']
spec.add_runtime_dependency 'aws-sdk-configservice', '~> 1'
spec.add_runtime_dependency 'aws-sdk-securityhub', '~> 1'
spec.add_runtime_dependency 'csv', '~> 3.1'
spec.add_runtime_dependency 'git-lite-version-bump', '>= 0.17.2'
spec.add_runtime_dependency 'htmlentities', '~> 4.3.4'
spec.add_runtime_dependency 'httparty', '~> 0.18.0'
spec.add_runtime_dependency 'json', '~> 2.3'
spec.add_runtime_dependency 'nokogiri', '~> 1.11'
spec.add_runtime_dependency 'openssl', '~> 2.1'
spec.add_runtime_dependency 'thor', '~> 0.19'
spec.add_development_dependency 'bundler'
spec.add_development_dependency 'minitest', '~> 5.0'
spec.add_development_dependency 'pry'
spec.add_development_dependency 'rake'
spec.add_development_dependency 'rubocop', '~> 1.11'
end