From e0f8011c4696668c8d1cdfb4a800aa4a4fed0e3b Mon Sep 17 00:00:00 2001 From: "yuuji.yaginuma" Date: Thu, 25 May 2023 07:18:52 +0900 Subject: [PATCH] Use appraisal from git for now I assume the released appraisal has a problem with the latest bundler. Ref: https://github.com/thoughtbot/appraisal/issues/210 --- Gemfile | 2 ++ gemfiles/rails_5.2.gemfile | 1 + gemfiles/rails_6.0.gemfile | 1 + gemfiles/rails_6.1.gemfile | 1 + gemfiles/sinatra.gemfile | 1 + 5 files changed, 6 insertions(+) diff --git a/Gemfile b/Gemfile index e0c5f479..1f78ecbb 100644 --- a/Gemfile +++ b/Gemfile @@ -4,3 +4,5 @@ source 'https://rubygems.org' # Bundler will treat runtime dependencies like base dependencies, and # development dependencies will be added by default to the :development group. gemspec + +gem "appraisal", git: "https://github.com/thoughtbot/appraisal" diff --git a/gemfiles/rails_5.2.gemfile b/gemfiles/rails_5.2.gemfile index ee33c30d..412acab9 100644 --- a/gemfiles/rails_5.2.gemfile +++ b/gemfiles/rails_5.2.gemfile @@ -2,6 +2,7 @@ source "https://rubygems.org" +gem "appraisal", git: "https://github.com/thoughtbot/appraisal" gem "activerecord-jdbcsqlite3-adapter", "~> 52.5", platform: :jruby gem "bootsnap", "~> 1.4" gem "rails", "5.2.4.3" diff --git a/gemfiles/rails_6.0.gemfile b/gemfiles/rails_6.0.gemfile index f42298fc..1ba64e2a 100644 --- a/gemfiles/rails_6.0.gemfile +++ b/gemfiles/rails_6.0.gemfile @@ -2,6 +2,7 @@ source "https://rubygems.org" +gem "appraisal", git: "https://github.com/thoughtbot/appraisal" gem "activerecord-jdbcsqlite3-adapter", "~> 60.1", platform: :jruby gem "bootsnap", "~> 1.4" gem "rails", "6.0.3.1" diff --git a/gemfiles/rails_6.1.gemfile b/gemfiles/rails_6.1.gemfile index fe48332d..fe7fec41 100644 --- a/gemfiles/rails_6.1.gemfile +++ b/gemfiles/rails_6.1.gemfile @@ -2,6 +2,7 @@ source "https://rubygems.org" +gem "appraisal", git: "https://github.com/thoughtbot/appraisal" gem "activerecord-jdbcsqlite3-adapter", "~> 61.1", platform: :jruby gem "bootsnap", ">= 1.4.4" gem "rails", "6.1.4" diff --git a/gemfiles/sinatra.gemfile b/gemfiles/sinatra.gemfile index 11496e63..1b7b6a89 100644 --- a/gemfiles/sinatra.gemfile +++ b/gemfiles/sinatra.gemfile @@ -2,6 +2,7 @@ source "https://rubygems.org" +gem "appraisal", git: "https://github.com/thoughtbot/appraisal" gem "sinatra", "2.0.8.1" gemspec path: "../"