-
Notifications
You must be signed in to change notification settings - Fork 5.4k
[Misc #21350] [DOC] Include docs of bundled gems #13371
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
base: master
Are you sure you want to change the base?
Conversation
While it seem to be a short-term fix to the problem, I believe it won't be ideal in the long term due to how individual bundled gems can configure their documentation differently. For example, if you search ![]() ![]() But more importantly, you can't see the comprehensive documentation about IRB like you'd on its official doc. This is because IRB's RDoc configs aren't properly picked up. We can improve it by either:
But neither options is ideal for the long-term IMO. |
I don't see this as a blocker, but this change will also increase the duration of Master
Branch
|
Thank you for pointing it out. A merit to include all docs is
Why doesn't IRB gem contain
"not ideal"? |
Yeah sorry I mean "neither" 🤦♂️
If this is for
Sure we can do that. But even if it's included, we'd still not account for the options configured through Assuming we still want to make bundled gems' html doc generate nestedly under Finally, it'll also make it hard for bundled gem maintainers to configure their projects' doc for 2 context at the same time. And to fix the doc shipped to So my opinion is: we can make RDoc support nested level of configuration options, and migrate bundled gems to use But I think it will be a significantly more costly option than simply linking to those gems' docs from docs.ruby-lang.org. We should implement some features to make those links more discoverable, but it will be a simpler feature to implement and requires only changes in RDoc and later in |
[Misc #21350]