Skip to content

Commit

Permalink
Gemfile: Avoid installing rdoc in CI.
Browse files Browse the repository at this point in the history
Avoid installing rdoc in CI as a workaround of the truffleruby-head version
24.0.0-dev issue.
  • Loading branch information
junaruga committed Nov 25, 2023
1 parent 1fa9fc5 commit e2b85c2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,7 @@ group :development do
gem "test-unit", "~> 3.0", ">= 3.4.6"
gem "test-unit-ruby-core"
# In the case of Ruby whose rdoc is not a default gem.
gem "rdoc"
# Avoid installing rdoc gem in CI as a workaround of the following issue.
# https://github.com/ruby/openssl/issues/699
gem "rdoc" unless ENV["CI"]
end

0 comments on commit e2b85c2

Please sign in to comment.