Skip to content

Commit

Permalink
Add csv gem to CI gemfile on Ruby 3.4+
Browse files Browse the repository at this point in the history
This should avoid a warning on Ruby 3.4 and should prevent failures
on Ruby 3.5+.
  • Loading branch information
jeremyevans committed Jun 4, 2024
1 parent da46557 commit cd91a49
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .ci.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit cd91a49

Please sign in to comment.