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 .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: 2.1
jobs:
build:
docker:
- image: cimg/ruby:2.7
- image: cimg/ruby:3.3
- image: redis:6.2-alpine
- image: quay.io/3scale/apisonator:latest
environment:
Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ source "https://rubygems.org"
gemspec

group :test do
gem 'minitest'
gem 'minitest', '~> 5.0'

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.

minitest 6 removed the must_equal/wont_be_nil global expectation
syntax used by every test.

gem "codeclimate-test-reporter", require: nil
end

Expand Down
5 changes: 2 additions & 3 deletions pisoni.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@ Gem::Specification.new do |s|
s.description = 'Client for the Apisonator internal API for model data.'
s.license = 'Apache-2.0'

# faraday v2.9.0 removes support for Ruby 2.7, see https://github.com/lostisland/faraday/releases/tag/v2.9.0
s.add_runtime_dependency 'faraday', '~> 2.0', '<= 2.9'
s.add_runtime_dependency 'faraday', '~> 2.0', '>= 2.14.3'
s.add_runtime_dependency 'json', '~> 2.7', '>= 2.7.1'
s.add_runtime_dependency 'injectedlogger', '0.0.13'
s.add_runtime_dependency 'faraday-net_http_persistent', '~> 2.1'
Expand All @@ -40,5 +39,5 @@ Gem::Specification.new do |s|

s.rdoc_options = ["--charset=UTF-8"]

s.required_ruby_version = '>= 2.6.0'
s.required_ruby_version = '>= 3.0.0'
end