CPANfile-Parse-PPI

 view release on metacpan or  search on metacpan

t/syntax/recommends.t  view on Meta::CPAN

24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
    'stage' => '',
    'dist' => 'MIYAGAWA/Hash-MultiValue-0.15.tar.gz',
    'name' => 'Hash::MultiValue',
    'version' => '',
    'feature' => '',
},
{
    'stage' => '',
    'mirror' => 'http://cpan.cpantesters.org/',
    'type' => 'recommends',
    'name' => 'Cookie::Baker',
    'dist' => 'KAZEBURO/Cookie-Baker-0.08.tar.gz',
    'version' => '',
    'feature' => '',
},
{
    'name' => 'Try::Tiny',
    'version' => '0.28',
    'type' => 'recommends',
    'stage' => '',
    'feature' => '',
},

t/syntax/recommends.t  view on Meta::CPAN

87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
__DATA__
recommends 'Path::Class', 0.26,
  dist => "KWILLIAMS/Path-Class-0.26.tar.gz";
  
# omit version specifier
recommends 'Hash::MultiValue',
  dist => "MIYAGAWA/Hash-MultiValue-0.15.tar.gz";
  
# use dist + mirror
recommends 'Cookie::Baker',
  dist => "KAZEBURO/Cookie-Baker-0.08.tar.gz",
  
# use the full URL
recommends 'Try::Tiny', 0.28,
 
recommends 'DBI';
recommends 'Plack', '0.9970';
 
on 'test' => sub {

t/syntax/requires.t  view on Meta::CPAN

24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
    'stage' => '',
    'dist' => 'MIYAGAWA/Hash-MultiValue-0.15.tar.gz',
    'name' => 'Hash::MultiValue',
    'feature' => '',
    'version' => ''
},
{
    'stage' => '',
    'mirror' => 'http://cpan.cpantesters.org/',
    'type' => 'requires',
    'name' => 'Cookie::Baker',
    'dist' => 'KAZEBURO/Cookie-Baker-0.08.tar.gz',
    'feature' => '',
    'version' => ''
},
{
    'name' => 'Try::Tiny',
    'version' => '0.28',
    'type' => 'requires',
    'feature' => '',
    'stage' => ''
},

t/syntax/requires.t  view on Meta::CPAN

108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
__DATA__
requires 'Path::Class', 0.26,
  dist => "KWILLIAMS/Path-Class-0.26.tar.gz";
  
# omit version specifier
requires 'Hash::MultiValue',
  dist => "MIYAGAWA/Hash-MultiValue-0.15.tar.gz";
  
# use dist + mirror
requires 'Cookie::Baker',
  dist => "KAZEBURO/Cookie-Baker-0.08.tar.gz",
  
# use the full URL
requires 'Try::Tiny', 0.28,
 
requires 'DBI';
requires 'Plack', '0.9970';
 
on 'test' => sub {



( run in 0.233 second using v1.01-cache-2.11-cpan-05444aca049 )