Skip to content

Commit

Permalink
Adjust CI gemfile to fix issues
Browse files Browse the repository at this point in the history
Use old version of builder if using old version markaby.

Add csv gem if using Ruby 3.3+.
  • Loading branch information
jeremyevans committed Jun 21, 2024
1 parent 646bd8b commit 1ec1695
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .ci.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ gem 'rake'
gem 'minitest'

gem 'babel-transpiler'
gem 'builder'
gem 'creole'
gem 'erubi'
gem 'erubis'
Expand All @@ -17,6 +16,10 @@ gem 'radius'
gem 'slim'
gem 'typescript-node'

if RUBY_VERSION > '3.3'
gem 'csv'
end

if RUBY_VERSION < '2.6'
gem 'rdoc', '< 6.4'
else
Expand All @@ -31,8 +34,10 @@ end

if RUBY_VERSION < '2.7'
gem 'markaby', '< 0.9.1'
gem 'builder', '< 3.3.0'
else
gem 'markaby'
gem 'builder'
end

if RUBY_VERSION < '2.1'
Expand Down

0 comments on commit 1ec1695

Please sign in to comment.