Acme-CPANModules-OneLinerTools
view release on metacpan or search on metacpan
"x_lists" : {
"Carp::Patch::Config" : "0",
"DBIx::Conn::MySQL" : "0",
"DBIx::Conn::SQLite" : "0",
"DD::Dummy" : "0",
"DDP" : "0",
"Devel::Confess" : "0",
"L" : "0",
"Log::ger::App" : "0",
"XXX" : "0",
"eval" : "0",
"lib::filter" : "0",
"lib::xi" : "0",
"ojo" : "0",
"this_mod" : "0"
}
},
"x_mentions" : {
"x_mentions" : {
"Carp::Patch::Config" : "0",
"DBIx::Conn::MySQL" : "0",
"DBIx::Conn::SQLite" : "0",
"DD::Dummy" : "0",
"DDP" : "0",
"Data::Printer" : "0",
"Devel::Confess" : "0",
"L" : "0",
"Log::ger::App" : "0",
"Require::Hook::More" : "0",
"XXX" : "0",
"eval" : "0",
"lib::filter" : "0",
"lib::xi" : "0",
"ojo" : "0",
"this_mod" : "0"
}
}
},
"provides" : {
"Acme::CPANModules::OneLinerTools" : {
"file" : "lib/Acme/CPANModules/OneLinerTools.pm",
Makefile.PL view on Meta::CPAN
my %FallbackPrereqs = (
"File::Spec" => 0,
"IO::Handle" => 0,
"IPC::Open3" => 0,
"Test::More" => 0,
"strict" => 0
);
unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
delete $WriteMakefileArgs{TEST_REQUIRES};
delete $WriteMakefileArgs{BUILD_REQUIRES};
$WriteMakefileArgs{PREREQ_PM} = \%FallbackPrereqs;
}
delete $WriteMakefileArgs{CONFIGURE_REQUIRES}
unless eval { ExtUtils::MakeMaker->VERSION(6.52) };
WriteMakefile(%WriteMakefileArgs);
% perl -MDBIx::Conn::SQLite=mydb -E'$dbh->selectrow_array("query"); ...'
ojo Author: SRI <https://metacpan.org/author/SRI>
DDP From the Data::Printer distribution.
Author: GARU <https://metacpan.org/author/GARU>
XXX Author: INGY <https://metacpan.org/author/INGY>
eval
this_mod
Author: PERLANCAR <https://metacpan.org/author/PERLANCAR>
lib::filter
Author: PERLANCAR <https://metacpan.org/author/PERLANCAR>
FAQ
What is an Acme::CPANModules::* module?
An Acme::CPANModules::* module, like this module, contains just a list
of module names that share a common characteristics. It is a way to
lib/Acme/CPANModules/OneLinerTools.pm view on Meta::CPAN
% perl -MDBIx::Conn::SQLite=mydb -E'$dbh->selectrow_array("query"); ...'
MARKDOWN
tags => ['database', 'dbi'],
},
{module=>'ojo'},
{module=>'DDP', summary=>'From the Data::Printer distribution', tags=>['debugging']},
{module=>'XXX', tags=>['debugging']},
{module=>'eval', tags=>['debugging']},
{module=>'this_mod', tags=>['module-loading']},
{module=>'lib::filter', tags=>['debugging', 'module-loading']},
],
};
1;
# ABSTRACT: List of modules to make your life easier when writing perl one-liners
__END__
lib/Acme/CPANModules/OneLinerTools.pm view on Meta::CPAN
=item L<DDP>
From the Data::Printer distribution.
Author: L<GARU|https://metacpan.org/author/GARU>
=item L<XXX>
Author: L<INGY|https://metacpan.org/author/INGY>
=item L<eval>
=item L<this_mod>
Author: L<PERLANCAR|https://metacpan.org/author/PERLANCAR>
=item L<lib::filter>
Author: L<PERLANCAR|https://metacpan.org/author/PERLANCAR>
=back
t/00-compile.t view on Meta::CPAN
$^X, @switches, '-e', "require q[$lib]"))
if $ENV{PERL_COMPILE_TEST_DEBUG};
my $pid = open3($stdin, '>&STDERR', $stderr, $^X, @switches, '-e', "require q[$lib]");
binmode $stderr, ':crlf' if $^O eq 'MSWin32';
my @_warnings = <$stderr>;
waitpid($pid, 0);
is($?, 0, "$lib loaded ok");
shift @_warnings if @_warnings and $_warnings[0] =~ /^Using .*\bblib/
and not eval { +require blib; blib->VERSION('1.01') };
if (@_warnings)
{
warn @_warnings;
push @warnings, @_warnings;
}
}
( run in 1.300 second using v1.01-cache-2.11-cpan-98e64b0badf )