App-podweaver
view release on metacpan or search on metacpan
lib/App/podweaver.pm view on Meta::CPAN
sub find_files_to_weave
{
my ( $self, %options ) = @_;
my ( $dist_root );
$dist_root = $options{ dist_root } || '.';
return(
File::Find::Rule->ignore_vcs
->not_name( qr/~$/ )
->perl_file
->in(
grep { -d $_ }
map { File::Spec->catfile( $dist_root, $_ ) }
qw/lib bin script/
)
);
}
sub weave_distribution
( run in 1.807 second using v1.01-cache-2.11-cpan-cc502c75498 )