App-podweaver
view release on metacpan or search on metacpan
lib/App/podweaver.pm view on Meta::CPAN
328329330331332333334335336337338339340341342343344345346347348sub
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 0.379 second using v1.01-cache-2.11-cpan-26ccb49234f )