App-SimulateReads
view release on metacpan or search on metacpan
"Path::Class" : "0",
"PerlIO::gzip" : "0.19",
"Pod::Usage" : "0",
"Scalar::Util" : "0",
"Storable" : "2.51",
"Try::Tiny" : "0",
"base" : "0",
"constant" : "0",
"feature" : "0",
"if" : "0",
"namespace::autoclean" : "0",
"perl" : "5.010",
"strict" : "0",
"true" : "0",
"utf8" : "0",
"warnings" : "0"
}
},
"test" : {
"recommends" : {
"Test::Perl::Critic" : "0",
Path::Class: '0'
PerlIO::gzip: '0.19'
Pod::Usage: '0'
Scalar::Util: '0'
Storable: '2.51'
Try::Tiny: '0'
base: '0'
constant: '0'
feature: '0'
if: '0'
namespace::autoclean: '0'
perl: '5.010'
strict: '0'
'true': '0'
utf8: '0'
warnings: '0'
resources:
bugtracker: https://github.com/galantelab/simulate_reads/issues
repository: git://github.com/galantelab/simulate_reads.git
version: '0.16'
x_serialization_backend: 'YAML::Tiny version 1.70'
Makefile.PL view on Meta::CPAN
"Path::Class" => 0,
"PerlIO::gzip" => "0.19",
"Pod::Usage" => 0,
"Scalar::Util" => 0,
"Storable" => "2.51",
"Try::Tiny" => 0,
"base" => 0,
"constant" => 0,
"feature" => 0,
"if" => 0,
"namespace::autoclean" => 0,
"strict" => 0,
"true" => 0,
"utf8" => 0,
"warnings" => 0
},
"TEST_REQUIRES" => {
"Class::Data::Inheritable" => "0.08",
"Test::Class" => "0.50",
"Test::Most" => "0.35",
"Test::UseAllModules" => 0,
Makefile.PL view on Meta::CPAN
"Storable" => "2.51",
"Test::Class" => "0.50",
"Test::Most" => "0.35",
"Test::UseAllModules" => 0,
"Try::Tiny" => 0,
"autodie" => 0,
"base" => 0,
"constant" => 0,
"feature" => 0,
"if" => 0,
"namespace::autoclean" => 0,
"strict" => 0,
"true" => 0,
"utf8" => 0,
"warnings" => 0
);
unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
delete $WriteMakefileArgs{TEST_REQUIRES};
delete $WriteMakefileArgs{BUILD_REQUIRES};
lib/App/SimulateReads/Base.pm view on Meta::CPAN
no if $] >= 5.018, warnings => "experimental::smartmatch";
use utf8 ();
use feature ();
use true ();
use Carp ();
use Try::Tiny ();
use Hook::AfterRuntime;
use Import::Into;
use Data::OptList;
use Module::Runtime 'use_module';
use namespace::autoclean;
our $VERSION = '0.16'; # VERSION
BEGIN {
$SIG{'__DIE__'} = sub {
if($^S) {
return;
}
Carp::confess(@_) if $ENV{DEBUG};
die(@_);
lib/App/SimulateReads/Base.pm view on Meta::CPAN
Carp::carp "Ignoring unknown import option '$_'";
}
}
}
#This must come after anything else that might change warning
# levels in the caller (e.g. Moose)
warnings->import('FATAL'=>'all');
warnings->unimport('experimental::smartmatch') if $] >= 5.018;
namespace::autoclean->import(
-cleanee => $caller,
-except => \@no_clean,
);
return;
}
1; ## --- end module App::SimulateReads::Base
__END__
( run in 0.820 second using v1.01-cache-2.11-cpan-a5abf4f5562 )