From: Dave Rolsky Date: Fri, 29 Oct 2010 13:59:09 +0000 (-0500) Subject: Don't index the native accessor method modules, which have no pod X-Git-Tag: 1.18~20 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=ba796e8be6e256fd7e8072c72e43d3ea2ec18728;p=gitmo%2FMoose.git Don't index the native accessor method modules, which have no pod --- diff --git a/Makefile.PL b/Makefile.PL index 5899535..2c1ee40 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -58,7 +58,13 @@ if ( is_maintainer() ) { tests_recursive(); repository 'git://git.moose.perl.org/Moose.git'; -add_metadata(x_authority => 'cpan:STEVAN'); +add_metadata( x_authority => 'cpan:STEVAN' ); +add_metadata( + no_index => { + files => ['lib/Moose/Meta/Method/Accessor/Native.pm'], + directory => ['lib/Moose/Meta/Method/Accessor/Native'], + } +); extra_tests();