From d4978eacb26153881fe10cd0b4bc118b970894f0 Mon Sep 17 00:00:00 2001 From: Jeremy Evans Date: Tue, 4 Jun 2024 15:16:10 -0700 Subject: [PATCH] Also add csv to CI gemfile on Ruby 3.3 It only warns on Ruby 3.3, but it's better to avoid the warning. --- .ci.gemfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci.gemfile b/.ci.gemfile index c775721bf..4e6e3cdf4 100644 --- a/.ci.gemfile +++ b/.ci.gemfile @@ -8,7 +8,7 @@ gem 'minitest-global_expectations' # Plugin/Extension Dependencies gem 'tzinfo' -if RUBY_VERSION >= '3.4' +if RUBY_VERSION >= '3.3' gem 'csv' end