diff --git a/Appraisals b/Appraisals index 00e4b5f..c249f41 100644 --- a/Appraisals +++ b/Appraisals @@ -17,7 +17,7 @@ appraise 'ar_4_2' do gem 'sqlite3', '~> 1.3.9' end -%w[5.2 6.0 6.1 7.0 7.1 8.0].each do |version| +%w[5.2 6.0 6.1 7.0 7.1].each do |version| appraise "ar_#{version.gsub('.', '_')}" do remove_gem 'appraisal' gem 'activerecord', "~> #{version}.0" @@ -25,6 +25,14 @@ end end end +%w[8.0].each do |version| + appraise "ar_#{version.gsub('.', '_')}" do + remove_gem 'appraisal' + gem 'activerecord', "~> #{version}.0" + gem 'sqlite3', '>= 2.0' + end +end + appraise 'ar_main' do remove_gem 'appraisal' gem 'activerecord', git: 'https://github.com/rails/rails', branch: 'main' diff --git a/gemfiles/ar_8_0.gemfile b/gemfiles/ar_8_0.gemfile index 6e046df..0105271 100644 --- a/gemfiles/ar_8_0.gemfile +++ b/gemfiles/ar_8_0.gemfile @@ -5,6 +5,6 @@ source 'https://rubygems.org' gem 'activerecord', '~> 8.0.0' gem 'mysql2', '~> 0.5' gem 'pg', '>= 0.2' -gem 'sqlite3', '~> 1.3' +gem 'sqlite3', '>= 2.0' gemspec path: '../'