Alien-ROOT
view release on metacpan or search on metacpan
inc/inc_Archive-Extract/Archive/Extract.pm view on Meta::CPAN
164916501651165216531654165516561657165816591660166116621663166416651666166716681669=item Mime magic support
Maybe this module should use something like C<File::Type> to determine
the type, rather than blindly trust the suffix.
=item Thread safety
Currently, C<Archive::Extract> does a C<chdir> to the extraction dir before
extraction, and a C<chdir> back again after. This is not necessarily
thread safe. See C<rt.cpan.org> bug C<#45671> for details.
=back
=head1 BUG REPORTS
Please report bugs or other issues to E<lt>bug-archive-extract@rt.cpan.org<gt>.
=head1 AUTHOR
This module by Jos Boumans E<lt>kane@cpan.orgE<gt>.
inc/inc_Module-Build/Module/Build.pm view on Meta::CPAN
478479480481482483484485486487488489490491492493494495496497498Build a PPD file
for
your distribution.
This action takes an optional argument C<codebase> which is used in
the generated PPD file to specify the (usually relative) URL of the
distribution. By
default
, this value is the distribution name without
any path information.
Example:
./Build ppd --codebase
"MSWin32-x86-multi-thread/Module-Build-0.21.tar.gz"
=item ppmdist
[version 0.23]
Generates a PPM binary distribution and a PPD description file. This
action also invokes the C<ppd> action, so it can accept the same
C<codebase> argument described under that action.
This uses the same mechanism as the C<dist> action to tar & zip its
inc/inc_Module-Build/Module/Build/Dumper.pm view on Meta::CPAN
1234567891011121314151617package
Module::Build::Dumper;
use
strict;
$VERSION
=
'0.4003'
;
# This is just a split-out of a wrapper function to do Data::Dumper
# stuff "the right way". See:
use
Data::Dumper;
sub
_data_dump {
my
(
$self
,
$data
) =
@_
;
return
(
"do{ my "
. Data::Dumper->new([
$data
],[
'x'
])->Purity(1)->Terse(0)->Dump()
.
'$x; }'
)
}
( run in 0.270 second using v1.01-cache-2.11-cpan-ec4f86ec37b )