Skip to content

Commit

Permalink
Restrict rdoc version in CI on Ruby <2.6
Browse files Browse the repository at this point in the history
Should hopefully fix CI issue with Ruby 2.5.
  • Loading branch information
jeremyevans committed Apr 25, 2023
1 parent 98a75d3 commit 7d30727
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .ci.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,12 @@ gem 'radius'
gem 'rdoc'
gem 'typescript-node'

if RUBY_VERSION < '2.6'
gem 'rdoc', '< 6.4'
else
gem 'rdoc'
end

gem 'coffee-script' if ENV['COFFEE_SCRIPT']

if RUBY_VERSION < '2.1'
Expand Down

0 comments on commit 7d30727

Please sign in to comment.