From 5386fde6baec00e94c06a67effda07b885c91ab1 Mon Sep 17 00:00:00 2001 From: sue445 Date: Sat, 22 Jun 2024 00:10:09 +0900 Subject: [PATCH] Fix CI Close #57 --- gemfiles/common.gemfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/gemfiles/common.gemfile b/gemfiles/common.gemfile index 145e12a..7b22260 100644 --- a/gemfiles/common.gemfile +++ b/gemfiles/common.gemfile @@ -6,3 +6,8 @@ if Gem::Version.create(RUBY_VERSION) < Gem::Version.create("2.3.0") # NOTE: webmock v3.15.0+ requires Ruby 2.3+ gem "webmock", "< 3.15.0" end + +if Gem::Version.create(RUBY_VERSION) < Gem::Version.create("2.7.0") + # term-ansicolor 1.9.0+ doesn't work on Ruby < 2.7 + gem "term-ansicolor", "< 1.9.0" +end