generated from inferno-framework/inferno-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathipa_test_kit.gemspec
25 lines (24 loc) · 1.22 KB
/
ipa_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
require_relative 'lib/ipa_test_kit/version'
Gem::Specification.new do |spec|
spec.name = 'ipa_test_kit'
spec.version = IpaTestKit::VERSION
spec.authors = ['Inferno Core Team']
spec.email = ['inferno@groups.mitre.org']
spec.summary = 'IPA Inferno tests'
spec.description = 'IPA Inferno tests'
spec.homepage = 'https://github.com/inferno-framework/ipa-test-kit'
spec.license = 'Apache-2.0'
spec.add_runtime_dependency 'inferno_core', '>= 0.6.2'
spec.add_runtime_dependency 'smart_app_launch_test_kit', '~> 0.5.0'
spec.add_runtime_dependency 'tls_test_kit', '~> 0.3.0'
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.3.6')
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = 'https://github.com/inferno-framework/ipa-test-kit'
spec.files = `[ -d .git ] && git ls-files -z lib config/presets LICENSE`.split("\x0")
spec.require_paths = ['lib']
spec.metadata['inferno_test_kit'] = 'true'
end