-
Notifications
You must be signed in to change notification settings - Fork 4
/
ips_test_kit.gemspec
28 lines (26 loc) · 1.06 KB
/
ips_test_kit.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
require_relative 'lib/ips/version'
Gem::Specification.new do |spec|
spec.name = 'ips_test_kit'
spec.version = IPS::VERSION
spec.authors = ['MITRE']
spec.email = ['[email protected]']
spec.date = Time.now.utc.strftime('%Y-%m-%d')
spec.summary = 'IPS Tests'
spec.description = 'IPS Tests'
spec.homepage = 'https://github.com/inferno-framework/ips-test-kit'
spec.license = 'Apache-2.0'
spec.add_runtime_dependency 'inferno_core', '>= 0.4.37'
spec.add_development_dependency 'database_cleaner-sequel', '~> 1.8'
spec.add_development_dependency 'factory_bot', '~> 6.1'
spec.add_development_dependency 'rspec', '~> 3.10'
spec.add_development_dependency 'webmock', '~> 3.11'
spec.required_ruby_version = Gem::Requirement.new('>= 3.1.2')
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = 'https://github.com/inferno-framework/ips-test-kit'
spec.files = [
Dir['lib/**/*.rb'],
Dir['lib/**/*.json'],
'LICENSE'
].flatten
spec.require_paths = ['lib']
end