AnyEvent-Multilog
view release on metacpan - search on metacpan
view release on metacpan or search on metacpan
181920212223242526272829303132333435363738
"requires"
: {
"ExtUtils::MakeMaker"
:
"6.30"
}
},
"runtime"
: {
"requires"
: {
"AnyEvent::Subprocess"
: 0,
"AnyEvent::Subprocess::Job::Delegate::Handle"
: 0,
"Moose"
: 0,
"MooseX::Types::Path::Class"
: 0,
"namespace::autoclean"
: 0
}
},
"test"
: {
"requires"
: {
"Directory::Scratch"
: 0,
"File::Which"
: 0,
"Sub::Exporter"
: 0,
"Test::Builder"
: 0,
"Test::More"
: 0,
"ok"
: 0,
171819202122232425262728293031323334353637license: perl
meta-spec:
version: 1.4
name: AnyEvent-Multilog
requires:
AnyEvent::Subprocess: 0
AnyEvent::Subprocess::Job::Delegate::Handle: 0
Moose: 0
MooseX::Types::Path::Class: 0
namespace::autoclean: 0
resources:
repository: git://github.com/jrockway/anyevent-multilog.git
version: 1.102861
x_Dist_Zilla:
plugins:
-
class: Dist::Zilla::Plugin::BeJROCKWAY
name:
'@JROCKWAY/BeJROCKWAY'
version: 1.102911
-
Makefile.PL view on Meta::CPAN
252627282930313233343536373839404142434445
},
'DISTNAME'
=>
'AnyEvent-Multilog'
,
'EXE_FILES'
=> [],
'LICENSE'
=>
'perl'
,
'NAME'
=>
'AnyEvent::Multilog'
,
'PREREQ_PM'
=> {
'AnyEvent::Subprocess'
=>
'0'
,
'AnyEvent::Subprocess::Job::Delegate::Handle'
=>
'0'
,
'Moose'
=>
'0'
,
'MooseX::Types::Path::Class'
=>
'0'
,
'namespace::autoclean'
=>
'0'
},
'VERSION'
=>
'1.102861'
,
'test'
=> {
'TESTS'
=>
't/*.t'
}
);
unless
(
eval
{ ExtUtils::MakeMaker->VERSION(6.56) } ) {
my
$br
=
delete
$WriteMakefileArgs
{BUILD_REQUIRES};
lib/AnyEvent/Multilog.pm view on Meta::CPAN
view all matches for this distribution
123456789101112131415161718192021package
AnyEvent::Multilog;
# ABSTRACT: event-driven interface to a multilog process
use
Moose;
use
AnyEvent::Subprocess;
our
$VERSION
=
'0.01'
;
use
namespace::autoclean;
has
'multilog'
=> (
is
=>
'ro'
,
isa
=> File,
predicate
=>
'has_multilog_path'
,
coerce
=> 1,
documentation
=>
q{path to multilog, if you don't want to use $PATH}
,
);
has
'script'
=> (
view release on metacpan - search on metacpan
( run in 1.278 second using v1.00-cache-2.02-grep-82fe00e-cpan-9cd309a53ab )