MooseX-Getopt-Usage
view release on metacpan or search on metacpan
'Pod::Usage' => 1.36,
'Pod::Text' => 0,
'Module::Loaded' => 0.06,
'Moose::Util::TypeConstraints' => 0,
'FindBin' => 0,
},
build_requires => {
'File::Slurp' => 0,
'Test::Class' => 0.36,
'Test::More' => 0,
'Test::Differences' => 0.5,
'Capture::Tiny' => 0.08,
},
add_to_cleanup => [ 'MooseX-Getopt-Usage-*' ],
create_makefile_pl => 'small',
);
$builder->create_build_script();
"url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
"version" : "2"
},
"name" : "MooseX-Getopt-Usage",
"prereqs" : {
"build" : {
"requires" : {
"Capture::Tiny" : "0.08",
"File::Slurp" : "0",
"Test::Class" : "0.36",
"Test::Differences" : "0.5",
"Test::More" : "0"
}
},
"configure" : {
"requires" : {
"Module::Build" : "0.4"
}
},
"runtime" : {
"requires" : {
---
abstract: 'Extend MooseX::Getopt with usage message and man page generated from attribute meta and POD.'
author:
- 'Mark Pitchless <markpitchless@gmail.com>'
build_requires:
Capture::Tiny: 0.08
File::Slurp: 0
Test::Class: 0.36
Test::Differences: 0.5
Test::More: 0
configure_requires:
Module::Build: 0.4
dynamic_config: 1
generated_by: 'Module::Build version 0.4007, CPAN::Meta::Converter version 2.132661'
license: perl
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
version: 1.4
name: MooseX-Getopt-Usage
t/lib/Basic/Test.pm view on Meta::CPAN
package Basic::Test;
use 5.010;
use strict;
use warnings;
use base qw(Test::Class);
use Test::More;
use Capture::Tiny qw(:all);
use Test::Differences;
use FindBin qw($Bin);
our $TBin = "$Bin/bin";
# Grab the perl exe we are running under as recommended here:
# http://wiki.cpantesters.org/wiki/CPANAuthorNotes
# We need to run the test scripts under this perl to get the right includes in
# automated environmenst like cpan testers running perlbrew.
use Config;
our $PerlPath = $Config{perlpath};
t/lib/Bin/Test.pm view on Meta::CPAN
# comparing output to files in t/bin.ok/
#
use 5.010;
use strict;
use warnings;
use base qw(Test::Class);
use Test::More;
use Capture::Tiny qw(:all);
use Test::Differences;
use File::Slurp qw(slurp);
use File::Basename;
use FindBin qw($Bin);
our $TBin = "$Bin/bin";
# Grab the perl exe we are running under as recommended here:
# http://wiki.cpantesters.org/wiki/CPANAuthorNotes
# We need to run the test scripts under this perl to get the right includes in
# automated environmenst like cpan testers running perlbrew.
( run in 0.622 second using v1.01-cache-2.11-cpan-131fc08a04b )