Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:

strategy:
matrix:
ruby-version: ['2.7', '3.0', '3.1', '3.2', '3.3']
ruby-version: ['2.7', '3.0', '3.1', '3.2', '3.3', '3.4']
appraisal: ['faraday_1.x', 'faraday_2.x']

env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.3
ruby-version: 3.4

- name: Publish to RubyGems
run: |
Expand Down
1 change: 1 addition & 0 deletions mauth-client.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ Gem::Specification.new do |spec|
spec.require_paths = ['lib']

spec.add_dependency 'addressable', '~> 2.0'
spec.add_dependency 'base64', '~> 0.2'
Copy link
Contributor Author

Choose a reason for hiding this comment

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

base64 is a bundled gem now

https://stdgems.org/new-in/3.4/

spec.add_dependency 'coderay', '~> 1.0'
spec.add_dependency 'faraday', '>= 1.9', '< 3.0'
spec.add_dependency 'faraday-http-cache', '>= 2.0', '< 3.0'
Expand Down
Loading