From cd91a49f0d1942c37106a366fa238b55178914a6 Mon Sep 17 00:00:00 2001 From: Jeremy Evans Date: Tue, 4 Jun 2024 12:54:11 -0700 Subject: [PATCH] Add csv gem to CI gemfile on Ruby 3.4+ This should avoid a warning on Ruby 3.4 and should prevent failures on Ruby 3.5+. --- .ci.gemfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.ci.gemfile b/.ci.gemfile index e47c9d37b..c775721bf 100644 --- a/.ci.gemfile +++ b/.ci.gemfile @@ -8,6 +8,10 @@ gem 'minitest-global_expectations' # Plugin/Extension Dependencies gem 'tzinfo' +if RUBY_VERSION >= '3.4' + gem 'csv' +end + if RUBY_VERSION < '2.1' gem 'nokogiri', '<1.7' elsif RUBY_VERSION < '2.3'