Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ['3.0', '3.1', '3.2']
ruby-version: ['3.2', '3.3']

steps:
- uses: actions/checkout@v2
Expand Down
4 changes: 3 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ source 'https://rubygems.org'

gemspec

gem 'parallel', '1.26.3'
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

what gems needs this - can it go in the test/development group?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

parallel is used by rubocop solely for dev/testing, it isnt used at runtime so yes we can definitely move it into the development & test group


group :test do
gem 'rubocop', '~> 1.23.0', require: false
gem 'rubocop', '~> 1.86', require: false
gem 'awesome_print', require: 'ap'
end
6 changes: 3 additions & 3 deletions fhir_client.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ Gem::Specification.new do |spec|

spec.required_ruby_version = '>= 3.0.0'
spec.add_dependency 'activesupport', '>= 3'
spec.add_dependency 'addressable', '>= 2.3'
spec.add_dependency 'addressable', '>= 2.9.0'
spec.add_dependency 'fhir_models', '>= 5.0.0'
spec.add_dependency 'fhir_stu3_models', '>= 3.1.1'
spec.add_dependency 'fhir_dstu2_models', '>= 1.1.1'
spec.add_dependency 'nokogiri', '>= 1.10.4'
spec.add_dependency 'nokogiri', '>= 1.19.1'
spec.add_dependency 'oauth2', '~> 2.0'
spec.add_dependency 'rack', '>= 1.5'
spec.add_dependency 'rack', '>= 2.0'
Comment thread
FlexonyoPizza marked this conversation as resolved.
Outdated
spec.add_dependency 'rest-client', '~> 2.0'
spec.add_dependency 'tilt', '>= 1.1'

Expand Down
Loading