generated from inferno-framework/inferno-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
smart_app_launch_test_kit.gemspec
32 lines (30 loc) · 1.45 KB
/
smart_app_launch_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
29
30
31
32
require_relative 'lib/smart_app_launch/version'
Gem::Specification.new do |spec|
spec.name = 'smart_app_launch_test_kit'
spec.version = SMARTAppLaunch::VERSION
spec.authors = ['Stephen MacVicar']
spec.email = ['inferno@groups.mitre.org']
spec.summary = 'Inferno Tests for the SMART Application Launch Framework Implementation Guide'
spec.description = 'Inferno Tests for the SMART Application Launch Framework Implementation Guide'
spec.homepage = 'https://github.com/inferno-framework/smart-app-launch-test-kit'
spec.license = 'Apache-2.0'
spec.add_runtime_dependency 'inferno_core', '>= 0.4.2'
spec.add_runtime_dependency 'json-jwt', '~> 1.15.3'
spec.add_runtime_dependency 'jwt', '~> 2.6'
spec.add_runtime_dependency 'tls_test_kit', '~> 0.2.0'
spec.add_development_dependency 'database_cleaner-sequel', '~> 1.8'
spec.add_development_dependency 'factory_bot', '~> 6.1'
spec.add_development_dependency 'rack-test', '~> 1.1.0'
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/smart-app-launch-test-kit'
spec.files = [
Dir['lib/**/*.rb'],
Dir['lib/**/*.html'],
Dir['lib/**/*.json'],
'LICENSE'
].flatten
spec.require_paths = ['lib']
end