Skip to content

Commit

Permalink
Fixes #35463 - Allow newer rdoc on Ruby 3.1
Browse files Browse the repository at this point in the history
Ruby 3.1 ships rdoc 6.1 by default.
  • Loading branch information
ekohl committed May 2, 2024
1 parent 43a7a4f commit fe77720
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ gem 'apipie-rails', '>= 0.8.0', '< 2'
gem 'apipie-dsl', '>= 2.6.2'
# Pin rdoc to prevent updating bundled psych (https://github.com/ruby/rdoc/commit/ebe185c8775b2afe844eb3da6fa78adaa79e29a4)
# Rails 6.0 is incompatible with Psych 4, Rails 6.1 should work
gem 'rdoc', '< 6.4'
gem 'rdoc', RUBY_VERSION < '3.1' ? '< 6.4' : nil
gem 'rabl', '>= 0.15.0', '< 1'
gem 'oauth', '~> 1.0'
gem 'deep_cloneable', '>= 3', '< 4'
Expand Down

0 comments on commit fe77720

Please sign in to comment.