-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add authors and urls to gemspec, update dependencies * bump version * restore gemspec description and naming
- Loading branch information
1 parent
8235c1f
commit 8ec083b
Showing
3 changed files
with
21 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,29 +3,27 @@ require_relative 'lib/davinci_pdex_test_kit/version' | |
Gem::Specification.new do |spec| | ||
spec.name = 'davinci_pdex_test_kit' | ||
spec.version = DaVinciPDexTestKit::VERSION | ||
spec.authors = ['Inferno Team'] | ||
spec.authors = ['Karl Naden', 'Shaumik Ashraf', 'Diego Griese'] | ||
spec.email = ['[email protected]'] | ||
spec.date = Time.now.utc.strftime('%Y-%m-%d') | ||
spec.summary = 'Da Vinci PDex Test Kit' | ||
spec.description = 'Test Kit for the Da Vinci Payer Data Exchange (PDex) FHIR Implementation Guide' | ||
# spec.homepage = 'TODO' | ||
spec.homepage = 'https://github.com/inferno-framework/davinci-pdex-test-kit/' | ||
spec.license = 'Apache-2.0' | ||
spec.add_runtime_dependency 'inferno_core', '~> 0.4.28' | ||
spec.add_runtime_dependency 'inferno_core', '~> 0.4.38' | ||
spec.add_runtime_dependency 'us_core_test_kit', '~> 0.6.5' | ||
spec.add_runtime_dependency 'bulk_data_test_kit', '~> 0.10' | ||
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' | ||
|
||
# dependent test kits: | ||
spec.add_runtime_dependency 'us_core_test_kit', '>= 0.6.4' | ||
spec.add_runtime_dependency 'bulk_data_test_kit', '~> 0.10' | ||
|
||
spec.required_ruby_version = Gem::Requirement.new('>= 3.1.2') | ||
# spec.metadata['homepage_uri'] = spec.homepage | ||
# spec.metadata['source_code_uri'] = 'TODO' | ||
spec.metadata['homepage_uri'] = spec.homepage | ||
spec.metadata['source_code_uri'] = 'https://github.com/inferno-framework/davinci-pdex-test-kit/' | ||
spec.files = [ | ||
Dir['lib/**/*.rb'], | ||
Dir['lib/**/*.json'], | ||
Dir['lib/**/*.md'], | ||
'LICENSE' | ||
].flatten | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# frozen_string_literal: true | ||
|
||
module DaVinciPDexTestKit | ||
VERSION = '0.9.0' | ||
VERSION = '0.9.1' | ||
end |