generated from inferno-framework/inferno-template
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathonc_certification_g10_test_kit.gemspec
43 lines (39 loc) · 1.98 KB
/
onc_certification_g10_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
33
34
35
36
37
38
39
40
41
42
43
require_relative 'lib/onc_certification_g10_test_kit/version'
Gem::Specification.new do |spec|
spec.name = 'onc_certification_g10_test_kit'
spec.version = ONCCertificationG10TestKit::VERSION
spec.authors = ['Stephen MacVicar']
spec.email = ['[email protected]']
spec.summary = 'ONC Certification (g)(10) Test Kit'
spec.description = 'ONC Certification (g)(10) Standardized API for Patient and Population Services Test Kit'
spec.homepage = 'https://github.com/onc-healthit/onc-certification-g10-test-kit'
spec.license = 'Apache-2.0'
spec.add_runtime_dependency 'bloomer', '~> 1.0.0'
spec.add_runtime_dependency 'colorize', '~> 0.8.1'
spec.add_runtime_dependency 'inferno_core', '~> 0.5.0'
spec.add_runtime_dependency 'json-jwt', '~> 1.15.3'
spec.add_runtime_dependency 'mime-types', '~> 3.4.0'
spec.add_runtime_dependency 'ndjson', '~> 1.0.0'
spec.add_runtime_dependency 'rubyzip', '~> 2.3.2'
# **Please note**: Version constraints for dependant test kits should only be
# locked to a single version in certification test kits (such as this one).
# All other test kits should use more flexible version constraints to avoid
# conflicts when integrating into platforms (e.g.; inferno.healthit.gov).
spec.add_runtime_dependency 'smart_app_launch_test_kit', '0.4.6'
spec.add_runtime_dependency 'tls_test_kit', '0.2.3'
spec.add_runtime_dependency 'us_core_test_kit', '0.9.3'
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'] = spec.homepage
spec.files = [
Dir['lib/**/*.rb'],
Dir['lib/**/*.json'],
Dir['lib/**/*.yml'],
'LICENSE'
].flatten
spec.require_paths = ['lib']
end