AtomicParsley-Command
view release on metacpan or search on metacpan
"warnings" : "0"
}
},
"test" : {
"requires" : {
"File::Spec" : "0",
"FindBin" : "0",
"IO::Handle" : "0",
"IPC::Open3" : "0",
"Test::Deep" : "0",
"Test::Fatal" : "0",
"Test::More" : "0.88"
}
}
},
"release_status" : "stable",
"resources" : {
"bugtracker" : {
"web" : "https://github.com/andrewrjones/perl5-AtomicParsley-Command/issues"
},
"homepage" : "https://github.com/andrewrjones/perl5-AtomicParsley-Command",
---
abstract: 'Interface to the Atomic Parsley command'
author:
- 'Andrew Jones <andrew@arjones.co.uk>'
build_requires:
File::Spec: 0
FindBin: 0
IO::Handle: 0
IPC::Open3: 0
Test::Deep: 0
Test::Fatal: 0
Test::More: 0.88
configure_requires:
ExtUtils::MakeMaker: 0
dynamic_config: 0
generated_by: 'Dist::Zilla version 5.042, CPAN::Meta::Converter version 2.150005'
license: perl
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
version: 1.4
name: AtomicParsley-Command
Makefile.PL view on Meta::CPAN
"Object::Tiny" => 0,
"strict" => 0,
"warnings" => 0
},
"TEST_REQUIRES" => {
"File::Spec" => 0,
"FindBin" => 0,
"IO::Handle" => 0,
"IPC::Open3" => 0,
"Test::Deep" => 0,
"Test::Fatal" => 0,
"Test::More" => "0.88"
},
"VERSION" => "1.153400",
"test" => {
"TESTS" => "t/*.t"
}
);
my %FallbackPrereqs = (
"File::Copy" => 0,
"File::Glob" => 0,
"File::Spec" => 0,
"FindBin" => 0,
"IO::Handle" => 0,
"IPC::Cmd" => 0,
"IPC::Open3" => 0,
"Object::Tiny" => 0,
"Test::Deep" => 0,
"Test::Fatal" => 0,
"Test::More" => "0.88",
"strict" => 0,
"warnings" => 0
);
unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
delete $WriteMakefileArgs{TEST_REQUIRES};
delete $WriteMakefileArgs{BUILD_REQUIRES};
$WriteMakefileArgs{PREREQ_PM} = \%FallbackPrereqs;
t/000-report-versions-tiny.t view on Meta::CPAN
eval { $v .= pmver('ExtUtils::MakeMaker','any version') };
eval { $v .= pmver('File::Copy','any version') };
eval { $v .= pmver('File::Glob','any version') };
eval { $v .= pmver('File::Spec','any version') };
eval { $v .= pmver('FindBin','any version') };
eval { $v .= pmver('IO::Handle','any version') };
eval { $v .= pmver('IPC::Cmd','any version') };
eval { $v .= pmver('IPC::Open3','any version') };
eval { $v .= pmver('Object::Tiny','any version') };
eval { $v .= pmver('Test::Deep','any version') };
eval { $v .= pmver('Test::Fatal','any version') };
eval { $v .= pmver('Test::More','0.88') };
eval { $v .= pmver('strict','any version') };
eval { $v .= pmver('warnings','any version') };
# All done.
$v .= <<'EOT';
Thanks for using my code. I hope it works for you.
If not, please try and include this output in the bug report.
t/10_command.t view on Meta::CPAN
#!perl
use strict;
use warnings;
use Test::Fatal;
use Test::More;
use FindBin qw($Bin);
use File::Copy;
use IPC::Cmd '0.76', ();
use AtomicParsley::Command::Tags;
if( IPC::Cmd::can_run('AtomicParsley') ){
plan tests => 22;
} else {
( run in 1.022 second using v1.01-cache-2.11-cpan-54e63673c56 )