Skip to content

Commit

Permalink
Add support for unsupported versions
Browse files Browse the repository at this point in the history
  • Loading branch information
inkstak committed Aug 21, 2024
1 parent a1c615e commit fcbf015
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 8 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
# TODO: we should test only supported versions: https://endoflife.date/ruby
ruby-version: [ '2.7', '3.0', '3.1', '3.2', '3.3', 'head' ]

steps:
Expand Down
14 changes: 8 additions & 6 deletions Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,12 @@ appraise "rails-7.0" do
gem "activesupport", "~> 7.0.x"
end

appraise "rails-7.1" do
gem "activesupport", "~> 7.1.x"
end

appraise "rails-7.2" do
gem "activesupport", "~> 7.2.x"
if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new("3.1")
appraise "rails-7.1" do
gem "activesupport", "~> 7.1.x"
end

appraise "rails-7.2" do
gem "activesupport", "~> 7.2.x"
end
end
8 changes: 6 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,9 @@ gemspec

gem "gem-release"
gem "simplecov_json_formatter"
gem "sqlite3"
gem "amazing_print"

if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new("3.0")
gem "sqlite3"
else
gem "sqlite3", "~> 1.4.0"
end

0 comments on commit fcbf015

Please sign in to comment.