Module::New::File::ManifestSkip - Module::New::File::ManifestSkip documentation


Module-New documentation Contained in the Module-New distribution.

Index


Code Index:

NAME

Top

Module::New::File::ManifestSkip

DESCRIPTION

Top

a template for MANIFEST.SKIP

AUTHOR

Top

Kenichi Ishigaki, <ishigaki at cpan.org>

COPYRIGHT AND LICENSE

Top


Module-New documentation Contained in the Module-New distribution.

package Module::New::File::ManifestSkip;

use strict;
use warnings;
use Module::New::File;

file 'MANIFEST.SKIP' => content { return <<'EOT';
(^|/)\.
(^|/)\.svn/
(^|/)\.git/
(^|/)\$~
(^|/)~
(^|/)blib/
(^|/)logs?/
(^|/)data/
(^|/)tmp/
(^|/)Makefile$
\.old$
\.bak$
\.SKIP$
(^|/)pm_to_blib
^cover_db/
^nytprof/
nytprof.out
EOT
};

1;

__END__