Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix compatibility with RDoc 6.13.0 #375

Merged
merged 2 commits into from
Mar 24, 2025

Conversation

jonathanhefner
Copy link
Member

This PR addresses two issues with RDoc 6.13.0:

ruby/rdoc@694987b removed support for
`file_dir` and `class_dir`, which we used to prefix URL paths with
`files/` or `classes/` (for example, in the URLs for
https://api.rubyonrails.org/files/activerecord/lib/active_record/base_rb.html
and https://api.rubyonrails.org/classes/ActiveRecord/Base.html).

Note that RDoc < 6.13.0 _requires_ these methods when implementing a
custom generator.  Omitting them will cause RDoc to raise a
`NoMethodError`.

This commit monkey patches `RDoc::TopLevel` and `RDoc::ClassModule` to
restore the behavior in way that is also compatible with RDoc < 6.13.0.
ruby/rdoc@f517b02 changed the signature
of `RDoc::Store#initialize` from:

  ```ruby
  def initialize(path = nil, type = nil)
  ```

to:

  ```ruby
  def initialize(options, path: nil, type: nil)
  ```

which is a breaking change.

This commit modifies `rdoc_top_level_for` to use the new signature.
Because the issue only affects our testing code, this commit ignores
compatibility with RDoc < 6.13.0.
@jonathanhefner jonathanhefner merged commit 3fcc2bb into rails:main Mar 24, 2025
10 checks passed
@jonathanhefner
Copy link
Member Author

I merged this to fix CI, but I have left feedback on ruby/rdoc#1304 and ruby/rdoc#1309, and I am hoping we can revert after RDoc 6.13.1 is released.

jonathanhefner added a commit to jonathanhefner/sdoc that referenced this pull request Mar 30, 2025
Follow-up to rails#375.

RDoc 6.13.1 has been released, and includes support for the
`class_module_path_prefix` and `file_path_prefix` options (added in
ruby/rdoc@3bc179d), which serve as
replacements for the `class_dir` and `file_dir` methods.

This commit removes the RDoc monkey patch added in
e2d849f in favor of using those
options.  This means SDoc will be incompatible with RDoc 6.13.0
specifically, but that shouldn't be a significant issue (and
compatibility with RDoc < 6.13.0 is preserved).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant