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


in reply to Re^3: What are the files in a CPAN distribution?
in thread What are the files in a CPAN distribution?

I do keep modules in public Git repos, and in the module's POD point to that repo. Nevertheless, when someone looks for a distribution, they look to CPAN, and I try to provide the complete dist there. Anyway, the good thing about Perl is that TIMTOWTDI. :)


Dave

  • Comment on Re^4: What are the files in a CPAN distribution?

Replies are listed 'Best First'.
Re^5: What are the files in a CPAN distribution?
by dolmen (Beadle) on Dec 21, 2012 at 13:42 UTC

    The module POD is not the only place where your repo must be linked. The most important place is the distribution metadata: the resources section of META.{yaml,json}

    This is important because the metadata can be processed by programs while the POD is only for humans.