MojoX-Log-Rotate
view release on metacpan or search on metacpan
"Mojo::Base" : "0",
"Mojo::File" : "0",
"Mojolicious" : "7.88",
"experimental" : "0",
"perl" : "v5.20.0"
}
},
"test" : {
"requires" : {
"File::Slurp" : "0",
"Modern::Perl" : "0",
"Test::Differences" : "0",
"Test::Kwalitee" : "0",
"Test::MockTime" : "0.17",
"Test::Mojo" : "0",
"Test::More" : "0",
"Thread::Queue" : "0",
"feature" : "0",
"perl" : "v5.20.0",
"strict" : "0",
"threads" : "0",
---
abstract: 'Makes mojolicious log file rotation easy'
author:
- 'Nicolas Georges <xlat@cpan.org>'
build_requires:
File::Slurp: '0'
Modern::Perl: '0'
Test::Differences: '0'
Test::Kwalitee: '0'
Test::MockTime: '0.17'
Test::Mojo: '0'
Test::More: '0'
Thread::Queue: '0'
feature: '0'
perl: v5.20.0
strict: '0'
threads: '0'
Makefile.PL view on Meta::CPAN
"MIN_PERL_VERSION" => "5.020000",
"NAME" => "MojoX::Log::Rotate",
"PREREQ_PM" => {
"Mojo::Base" => 0,
"Mojo::File" => 0,
"Mojolicious" => "7.88",
"experimental" => 0
},
"TEST_REQUIRES" => {
"File::Slurp" => 0,
"Modern::Perl" => 0,
"Test::Differences" => 0,
"Test::Kwalitee" => 0,
"Test::MockTime" => "0.17",
"Test::Mojo" => 0,
"Test::More" => 0,
"Thread::Queue" => 0,
"feature" => 0,
"strict" => 0,
"threads" => 0,
"threads::shared" => 0,
Makefile.PL view on Meta::CPAN
},
"VERSION" => "1.222670",
"test" => {
"TESTS" => "t/*.t"
}
);
my %FallbackPrereqs = (
"File::Slurp" => 0,
"Modern::Perl" => 0,
"Mojo::Base" => 0,
"Mojo::File" => 0,
"Mojolicious" => "7.88",
"Test::Differences" => 0,
"Test::Kwalitee" => 0,
"Test::MockTime" => "0.17",
"Test::Mojo" => 0,
"Test::More" => 0,
"Thread::Queue" => 0,
"experimental" => 0,
t/threads.t view on Meta::CPAN
use Modern::Perl;
BEGIN {
use Config;
if (! $Config{'useithreads'}) {
print("1..0 # SKIP Perl not compiled with 'useithreads'\n");
exit(0);
}
my $may_crash = scalar grep {/^DEBUGGING|PERL_TRACK_MEMPOOL$/} Config::bincompat_options();
if($may_crash) {
#looks like to be the cause of a "panic: free from wrong pool, 55967dc51d80!=559679d30010 during global destruction." message
print("1..0 # SKIP Perl compiled with DEBUGGING or PERL_TRACK_MEMPOOL\n");
( run in 0.425 second using v1.01-cache-2.11-cpan-4d50c553e7e )