forked from inferno-framework/davinci-pas-test-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdavinci_pas_test_kit.gemspec
More file actions
27 lines (25 loc) · 1.31 KB
/
davinci_pas_test_kit.gemspec
File metadata and controls
27 lines (25 loc) · 1.31 KB
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
require_relative 'lib/davinci_pas_test_kit/version'
Gem::Specification.new do |spec|
spec.name = 'davinci_pas_test_kit'
spec.version = DaVinciPASTestKit::VERSION
spec.authors = ['Inferno Team']
spec.date = Time.now.utc.strftime('%Y-%m-%d')
spec.summary = 'Da Vinci PAS Test Kit'
spec.description = 'Inferno Test Kit for the Da Vinci Prior Authorization Support IG'
spec.homepage = 'https://github.com/inferno-framework/davinci-pas-test-kit'
spec.license = 'Apache-2.0'
spec.add_dependency 'inferno_core', '~> 1.0', '>= 1.0.2'
spec.add_dependency 'smart_app_launch_test_kit', '~> 1.0'
spec.add_dependency 'subscriptions_test_kit', '~> 0.12.0'
spec.add_dependency 'udap_security_test_kit', '~> 0.12.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['inferno_test_kit'] = 'true'
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = spec.homepage
spec.files = `[ -d .git ] && git ls-files -z lib config/presets LICENSE`.split("\x0")
spec.require_paths = ['lib']
end