AnyEvent-Multilog

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
   "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,

META.yml  view on Meta::CPAN

17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
license: 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:
version: 1.102861
x_Dist_Zilla:
  plugins:
    -
      class: Dist::Zilla::Plugin::BeJROCKWAY
      name: '@JROCKWAY/BeJROCKWAY'
      version: 1.102911
    -

Makefile.PL  view on Meta::CPAN

25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
  },
  '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

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# ABSTRACT: event-driven interface to a multilog process
use Moose;
 
 
our $VERSION = '0.01';
 
 
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 all matches for this distribution
 view release on metacpan -  search on metacpan

( run in 1.278 second using v1.00-cache-2.02-grep-82fe00e-cpan-9cd309a53ab )