Don't index the native accessor method modules, which have no pod
Dave Rolsky [Fri, 29 Oct 2010 13:59:09 +0000 (08:59 -0500)]
Makefile.PL

index 5899535..2c1ee40 100644 (file)
@@ -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();