From dd0ef51ca986d86cadbb1fc19ba70666f261d98b Mon Sep 17 00:00:00 2001 From: Peter Boling Date: Thu, 14 Nov 2024 20:06:45 +0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20Appraisal:=20Coverage=20runs=20o?= =?UTF-8?q?n=20Ruby=203.3=20and=20Rails=207.2.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/coverage.yml | 2 +- Gemfile | 2 +- Gemfile.lock | 2 +- gemfiles/coverage.gemfile | 5 +++-- 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 9ff76be..dc47260 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -46,7 +46,7 @@ jobs: gemfile: - coverage ruby: - - '3.1' + - '3.3' steps: ### COUCHDB diff --git a/Gemfile b/Gemfile index 0e365bb..23c840b 100644 --- a/Gemfile +++ b/Gemfile @@ -39,7 +39,7 @@ gem "guard-rspec" gem "rb-fsevent" ### Coverage -gem "kettle-soup-cover", "~> 1.0", ">= 1.0.2" +gem "kettle-soup-cover", "~> 1.0", ">= 1.0.4" ### Testing gem "test-unit", ">= 3.0" diff --git a/Gemfile.lock b/Gemfile.lock index b65d049..8b8ad0c 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -312,7 +312,7 @@ DEPENDENCIES guard guard-bundler guard-rspec - kettle-soup-cover (~> 1.0, >= 1.0.2) + kettle-soup-cover (~> 1.0, >= 1.0.4) mongoid (~> 7) mongoid-rspec (~> 4.2) nobrainer (~> 0.44) diff --git a/gemfiles/coverage.gemfile b/gemfiles/coverage.gemfile index 1009663..4910b10 100644 --- a/gemfiles/coverage.gemfile +++ b/gemfiles/coverage.gemfile @@ -7,13 +7,14 @@ source "https://rubygems.org" # Exceptions, if any, will be found here in gemfiles/*.gemfile ### ORMs -gem "activerecord", "~> 8.0", require: false +# NOTE: couch_potato is not yet compatible with Rails 8.0 +gem "activerecord", "~> 7.2.2", require: false gem "couch_potato", "~> 1.17", require: false gem "mongoid", "~> 7.0", require: false gem "mongoid-rspec", "~> 4.2", require: false gem "sequel", "~> 5.86", require: false # Coverage -gem "kettle-soup-cover", "~> 1.0", ">= 1.0.2" +gem "kettle-soup-cover", "~> 1.0", ">= 1.0.4" gemspec path: "../"