diff --git a/Appraisals b/Appraisals index 1e6f7115..55955b66 100644 --- a/Appraisals +++ b/Appraisals @@ -16,10 +16,9 @@ appraise 'rails-7.1' do end appraise 'rails-7.2' do - gem 'rails', '~> 7.2.0.beta2' + gem 'rails', '~> 7.2.0' end appraise 'rails-edge' do gem 'rails', git: 'https://github.com/rails/rails.git', branch: 'main' - gem 'sqlite3' end diff --git a/Gemfile b/Gemfile index 68caf176..cc5af0bd 100644 --- a/Gemfile +++ b/Gemfile @@ -21,5 +21,5 @@ gem 'shotgun' gem 'simplecov' gem 'simplecov-lcov' gem 'sinatra' -gem 'sqlite3', '~> 1.7' # FIXME: remove after rails/rails#51592 +gem 'sqlite3' gem 'webrick' diff --git a/gemfiles/rails_7.2.gemfile b/gemfiles/rails_7.2.gemfile index 2e5451da..0060c508 100644 --- a/gemfiles/rails_7.2.gemfile +++ b/gemfiles/rails_7.2.gemfile @@ -18,8 +18,8 @@ gem "shotgun" gem "simplecov" gem "simplecov-lcov" gem "sinatra" -gem "sqlite3", "~> 1.7" +gem "sqlite3" gem "webrick" -gem "rails", "~> 7.2.0.beta2" +gem "rails", "~> 7.2.0" gemspec path: "../"