Skip to content

Commit

Permalink
Release 091 (#8)
Browse files Browse the repository at this point in the history
* Add authors and urls to gemspec, update dependencies

* bump version

* restore gemspec description and naming
  • Loading branch information
Shaumik-Ashraf authored Jun 7, 2024
1 parent 8235c1f commit 8ec083b
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 21 deletions.
22 changes: 12 additions & 10 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ PATH
specs:
davinci_pdex_test_kit (0.9.0)
bulk_data_test_kit (~> 0.10)
inferno_core (~> 0.4.28)
us_core_test_kit (>= 0.6.4)
inferno_core (~> 0.4.38)
us_core_test_kit (~> 0.6.5)

GEM
remote: https://rubygems.org/
Expand Down Expand Up @@ -152,7 +152,7 @@ GEM
httpclient (2.8.3)
i18n (1.14.5)
concurrent-ruby (~> 1.0)
inferno_core (0.4.37)
inferno_core (0.4.38)
activesupport (~> 6.1.7.5)
base62-rb (= 0.3.1)
blueprinter (= 0.25.2)
Expand All @@ -174,7 +174,7 @@ GEM
puma (~> 5.6.7)
rake (~> 13.0)
sequel (~> 5.42.0)
sidekiq (~> 6.5.6)
sidekiq (~> 7.2.4)
sqlite3 (~> 1.4)
thor (~> 1.2.1)
tty-markdown (~> 0.7.1)
Expand Down Expand Up @@ -246,7 +246,8 @@ GEM
rake (13.2.1)
rdoc (6.6.3.1)
psych (>= 4.0.0)
redis (4.8.1)
redis-client (0.22.2)
connection_pool
reline (0.5.3)
io-console (~> 0.5)
rest-client (2.1.0)
Expand All @@ -273,10 +274,11 @@ GEM
ruby2_keywords (0.0.5)
rubyzip (2.3.2)
sequel (5.42.0)
sidekiq (6.5.12)
connection_pool (>= 2.2.5, < 3)
rack (~> 2.0)
redis (>= 4.5.0, < 5)
sidekiq (7.2.4)
concurrent-ruby (< 2)
connection_pool (>= 2.3.0)
rack (>= 2.2.4)
redis-client (>= 0.19.0)
smart_app_launch_test_kit (0.4.2)
inferno_core (>= 0.4.2)
json-jwt (~> 1.15.3)
Expand Down Expand Up @@ -312,7 +314,7 @@ GEM
concurrent-ruby (~> 1.0)
unicode-display_width (2.5.0)
unicode_utils (1.4.0)
us_core_test_kit (0.7.0)
us_core_test_kit (0.6.5)
inferno_core (>= 0.4.2)
smart_app_launch_test_kit (>= 0.4.0)
tls_test_kit (~> 0.2.0)
Expand Down
18 changes: 8 additions & 10 deletions davinci_pdex_test_kit.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion lib/davinci_pdex_test_kit/version.rb
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

0 comments on commit 8ec083b

Please sign in to comment.