From f61df567ac2eb16c97f5b20fa82689093bd48987 Mon Sep 17 00:00:00 2001 From: Genki Sugawara Date: Tue, 2 Apr 2024 11:33:05 +0900 Subject: [PATCH] Add activesupport_6_1 test --- Appraisals | 4 ++++ README.md | 3 ++- gemfiles/activesupport_6_1.gemfile | 7 +++++++ 3 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 gemfiles/activesupport_6_1.gemfile diff --git a/Appraisals b/Appraisals index e60b59e..3897f8c 100644 --- a/Appraisals +++ b/Appraisals @@ -5,3 +5,7 @@ end appraise "activesupport_6_0" do gem "activesupport", "~> 6.0.6.1" end + +appraise "activesupport_6_1" do + gem "activesupport", "~> 6.1.7.7" +end diff --git a/README.md b/README.md index 2064a3b..a47a4ee 100644 --- a/README.md +++ b/README.md @@ -67,7 +67,8 @@ docker compose up -d bundle install bundle exec appraisal install #bundle exec appraisal activesupport_5_2 rake spec -bundle exec appraisal activesupport_6_0 rake spec +#bundle exec appraisal activesupport_6_0 rake spec +bundle exec appraisal activesupport_6_1 rake spec ``` ## Contributing diff --git a/gemfiles/activesupport_6_1.gemfile b/gemfiles/activesupport_6_1.gemfile new file mode 100644 index 0000000..57dbf02 --- /dev/null +++ b/gemfiles/activesupport_6_1.gemfile @@ -0,0 +1,7 @@ +# This file was generated by Appraisal + +source "https://rubygems.org" + +gem "activesupport", "~> 6.1.7.7" + +gemspec path: "../"