Skip to content

Commit

Permalink
Remove Rails 7.0 support
Browse files Browse the repository at this point in the history
  • Loading branch information
djmb committed Mar 4, 2024
1 parent 1017843 commit 3b1585f
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 232 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
fail-fast: false
matrix:
ruby-version: ["3.0", "3.1", "3.2", "3.3"]
gemfile: [ rails_7, rails_7_1, rails_main ]
gemfile: [ rails_7_1, rails_main ]
database: [sqlite, postgres, mysql]
exclude:
- ruby-version: "3.0"
Expand Down
4 changes: 0 additions & 4 deletions Appraisals
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
# frozen_string_literal: true

appraise "rails-7" do
gem "railties", github: "rails/rails", branch: "7-0-stable"
end

appraise "rails-7-1" do
gem "railties", github: "rails/rails", branch: "7-1-stable"
end
Expand Down
6 changes: 3 additions & 3 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ PATH
remote: .
specs:
solid_cache (0.5.3)
activejob (>= 7)
activerecord (>= 7)
railties (>= 7)
activejob (>= 7.1)
activerecord (>= 7.1)
railties (>= 7.1)

GEM
remote: https://rubygems.org/
Expand Down
21 changes: 0 additions & 21 deletions gemfiles/rails_7.gemfile

This file was deleted.

196 changes: 0 additions & 196 deletions gemfiles/rails_7.gemfile.lock

This file was deleted.

6 changes: 3 additions & 3 deletions gemfiles/rails_7_1.gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ PATH
remote: ..
specs:
solid_cache (0.5.3)
activejob (>= 7)
activerecord (>= 7)
railties (>= 7)
activejob (>= 7.1)
activerecord (>= 7.1)
railties (>= 7.1)

GEM
remote: https://rubygems.org/
Expand Down
6 changes: 3 additions & 3 deletions gemfiles/rails_main.gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ PATH
remote: ..
specs:
solid_cache (0.5.3)
activejob (>= 7)
activerecord (>= 7)
railties (>= 7)
activejob (>= 7.1)
activerecord (>= 7.1)
railties (>= 7.1)

GEM
remote: https://rubygems.org/
Expand Down
2 changes: 1 addition & 1 deletion solid_cache.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Gem::Specification.new do |spec|
Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
end

rails_version = ">= 7"
rails_version = ">= 7.1"
spec.add_dependency "activerecord", rails_version
spec.add_dependency "activejob", rails_version
spec.add_dependency "railties", rails_version
Expand Down

0 comments on commit 3b1585f

Please sign in to comment.