I am getting several warnings when generating my project documentation because YARD cannot parse some external class extensions
[warn]: in YARD::Handlers::Ruby::MixinHandler: Undocumentable mixin: YARD::Parser::UndocumentableError for class MyClass
[warn]: in file 'lib/Project/myclass.rb':7:
7: include Virtus.model
The root of the problem is one class extension that cannot be parsed. I know I could just run yard -q to suppress all warnings, but I would rather supress individual extensions than everything.
As far as I can see in the help, I could --exclude but right now, the offending class is part of an external gem. I also tried @!parse without success
class MyClass
# @!parse Virtus.model
include Virtus.model
end