I am using YARD to document one of my Ruby projects. I have certain methods that I do not want to be included in the documentation, things like #inspect
and #to_s
that you expect to exist and return a reasonable result.
It is possible to hide these methods using the @private
tag and the yardoc --no-private
command-line option:
# @private let's not document this
def inspect; ...; end
However, the YARD documentation on @private
explicitly states:
Note: This method is not recommended for hiding undocumented or “unimportant” methods. This tag should only be used to mark objects private when Ruby visibility rules cannot do so.
If I use @api private
instead, YARD (nicely) tags the methods with a private badge in the documentation, but still shows them.
Is there a "legal" way to hide methods from YARD output?
From my limited tests, I noticed the following works well (and doesn't have the explicit note in the documentation to avoid for your use case):
According to the yard documentation:
Hope that helps.