Skip to content

Commit

Permalink
feat!: support rails 8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
seuros committed Sep 30, 2024
1 parent f7bfad9 commit d433c12
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions Appraisals
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
# frozen_string_literal: true

appraise 'activerecord-7.0' do
gem 'activerecord', '~> 7.0.1'
appraise 'activerecord-7.1' do
gem 'activerecord', '~> 7.1.0'
gem 'pg'
gem 'sqlite3', '~> 1.4'
gem 'mysql2', '~> 0.5'
end

appraise 'activerecord-7.1' do
gem 'activerecord', '~> 7.1.0'
appraise 'activerecord-7.2' do
gem 'activerecord', '~> 7.2.0'
gem 'pg'
gem 'sqlite3', '~> 1.4'
gem 'mysql2', '~> 0.5'
end

appraise 'activerecord-7.2' do
gem 'activerecord', '~> 7.2.0'
appraise 'activerecord-8.0' do
gem 'activerecord', '~> 8.0.0.beta1'
gem 'pg'
gem 'sqlite3', '~> 1.4'
gem 'mysql2', '~> 0.5'
Expand Down
2 changes: 1 addition & 1 deletion acts-as-taggable-on.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Gem::Specification.new do |gem|
gem.post_install_message = File.read('UPGRADING.md')
end

gem.add_runtime_dependency 'activerecord', '>= 7.0', '< 8.0'
gem.add_runtime_dependency 'activerecord', '>= 7.1', '< 8.1'
gem.add_runtime_dependency 'zeitwerk', '>= 2.4', '< 3.0'

gem.add_development_dependency 'rspec-rails'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

source "https://rubygems.org"

gem "activerecord", "~> 7.0.1"
gem "activerecord", "~> 8.0.0.beta1"
gem "pg"
gem "sqlite3", "~> 1.4"
gem "mysql2", "~> 0.5"
Expand Down

0 comments on commit d433c12

Please sign in to comment.