App-SimulateReads
view release on metacpan or search on metacpan
"Moose::Util::TypeConstraints" : "0",
"MooseX::Singleton" : "0",
"MooseX::StrictConstructor" : "0",
"MooseX::UndefTolerant" : "0",
"Parallel::ForkManager" : "1.19",
"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"
Moose::Util::TypeConstraints: '0'
MooseX::Singleton: '0'
MooseX::StrictConstructor: '0'
MooseX::UndefTolerant: '0'
Parallel::ForkManager: '1.19'
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'
Makefile.PL view on Meta::CPAN
"Moose::Util::TypeConstraints" => 0,
"MooseX::Singleton" => 0,
"MooseX::StrictConstructor" => 0,
"MooseX::UndefTolerant" => 0,
"Parallel::ForkManager" => "1.19",
"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
},
Makefile.PL view on Meta::CPAN
"MooseX::UndefTolerant" => 0,
"Parallel::ForkManager" => "1.19",
"Path::Class" => 0,
"PerlIO::gzip" => "0.19",
"Pod::Usage" => 0,
"Scalar::Util" => 0,
"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
lib/App/SimulateReads/Base.pm view on Meta::CPAN
# ABSTRACT: Policy and base module to App::SimulateReads project.
use 5.010;
use strict;
use warnings FATAL => 'all';
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 {
lib/App/SimulateReads/Base.pm view on Meta::CPAN
sub import {
my ($class, @opts) = @_;
my $caller = caller;
# Import as in Moder::Perl
strict->import;
feature->import(':5.10');
utf8->import($caller);
true->import;
Carp->import::into($caller);
Try::Tiny->import::into($caller);
# Custom handy function
do {
no strict 'refs'; ## no critic
*{"${caller}\:\:log_msg"} = \&log_msg;
*{"${caller}\:\:LOG_VERBOSE"} = \$LOG_VERBOSE;
};
@opts = @{
Data::OptList::mkopt(
lib/App/SimulateReads/CLI/App.pm view on Meta::CPAN
package App::SimulateReads::CLI::App;
# ABSTRACT: App::SimulateReads::CLI subclass for command line application interface.
use App::SimulateReads::Base 'class';
use Path::Class 'file';
use Pod::Usage;
use Try::Tiny;
extends 'App::SimulateReads::CLI';
with 'App::SimulateReads::Role::ParseArgv';
our $VERSION = '0.16'; # VERSION
has 'command_stack' => (
traits => ['Array'],
is => 'ro',
( run in 0.266 second using v1.01-cache-2.11-cpan-05444aca049 )