http://www.perlmonks.org?node_id=1000665

jds17 has asked for the wisdom of the Perl Monks concerning the following question:

Dear monks,

I am using Moo::Role for a module and want to write POD for role methods only once to avoid having multiple copies of the same POD to maintain. The natural place for this documentation would be the class defining the role, but currently I have to repeat the POD in each role impersonating class since otherwise Pod::Coverage chokes on it.

For Moose, there is Pod::Coverage::Moose which can be used to fix this, but I did not find anything similar for Moo. Do you have an idea what to use or how to handle this?