Badge-Depot-Plugin-Cpantesters

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
- Initial release
 
[Stats & Dependency Changes]
- (run req) + Badge::Depot 0.0103
- (run req) + JSON::MaybeXS (any)
- (run req) + Moose 2.1400
- (run req) + MooseX::AttributeShortcuts (any)
- (run req) + Path::Tiny (any)
- (run req) + Types::Standard 1.000000
- (run req) + Types::URI (any)
- (run req) + namespace::autoclean 0.18
- (run req) + perl 5.010000
- (test req) + ExtUtils::MakeMaker (any)
- (test req) + File::Spec (any)
- (test req) + IO::Handle (any)
- (test req) + IPC::Open3 (any)
- (test req) + Test::More 0.96
- (test rec) + CPAN::Meta 2.120900
- (conf req) + ExtUtils::MakeMaker (any)
- (dev req) + Dist::Zilla::Plugin::Authority 1.009
- (dev req) + Dist::Zilla::Plugin::BumpVersionAfterRelease::Transitional

META.json  view on Meta::CPAN

115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
},
"runtime" : {
   "requires" : {
      "Badge::Depot" : "0.0104",
      "JSON::MaybeXS" : "1.003003",
      "Moose" : "2.1400",
      "MooseX::AttributeShortcuts" : "0.028",
      "Path::Tiny" : "0.072",
      "Types::Standard" : "1.000000",
      "Types::URI" : "0",
      "namespace::autoclean" : "0.18",
      "perl" : "5.010000"
   }
},
"test" : {
   "recommends" : {
      "CPAN::Meta" : "2.120900"
   },
   "requires" : {
      "ExtUtils::MakeMaker" : "0",
      "File::Spec" : "0",

META.yml  view on Meta::CPAN

30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
    file: lib/Badge/Depot/Plugin/Cpantesters.pm
    version: '0.0102'
requires:
  Badge::Depot: '0.0104'
  JSON::MaybeXS: '1.003003'
  Moose: '2.1400'
  MooseX::AttributeShortcuts: '0.028'
  Path::Tiny: '0.072'
  Types::Standard: '1.000000'
  Types::URI: '0'
  namespace::autoclean: '0.18'
  perl: '5.010000'
resources:
version: '0.0102'
x_Dist_Zilla:
  perl:
    version: '5.020001'
  plugins:

Makefile.PL  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
"MIN_PERL_VERSION" => "5.010000",
"NAME" => "Badge::Depot::Plugin::Cpantesters",
"PREREQ_PM" => {
  "Badge::Depot" => "0.0104",
  "JSON::MaybeXS" => "1.003003",
  "Moose" => "2.1400",
  "MooseX::AttributeShortcuts" => "0.028",
  "Path::Tiny" => "0.072",
  "Types::Standard" => "1.000000",
  "Types::URI" => 0,
  "namespace::autoclean" => "0.18"
},
"TEST_REQUIRES" => {
  "ExtUtils::MakeMaker" => 0,
  "File::Spec" => 0,
  "IO::Handle" => 0,
  "IPC::Open3" => 0,
  "Test::More" => "0.96"
},
"VERSION" => "0.0102",
"test" => {

dist.ini  view on Meta::CPAN

235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
Dist::Iller::Config::Author::CSSON = 0.0311
 
[Prereqs / RuntimeRequires]
Badge::Depot = 0.0104
JSON::MaybeXS = 1.003003
Moose = 2.1400
MooseX::AttributeShortcuts = 0.028
Path::Tiny = 0.072
Types::Standard = 1.000000
Types::URI = 0
namespace::autoclean = 0.18
perl = 5.010000
 
[Prereqs / TestRequires]
Test::More = 0.96
 
; authordep Badge::Depot = 0.0103
; authordep Badge::Depot::Plugin::Coverage = 0
; authordep Badge::Depot::Plugin::Cpantesters = 0
; authordep Badge::Depot::Plugin::Kwalitee = 0
; authordep Badge::Depot::Plugin::Perl = 0

iller.yaml  view on Meta::CPAN

10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
    - Erik Carlsson <info@code301.com>
  license: Perl_5
  copyright_holder: Erik Carlsson
  copyright_year: 2016
 
prereqs:
  runtime:
    requires:
      - perl: 5.010000
      - Moose: 2.1400
      - namespace::autoclean: 0.18
      - MooseX::AttributeShortcuts
      - Types::Standard: 1.000000
      - Types::URI
      - JSON::MaybeXS
      - Path::Tiny
      - Badge::Depot: 0.0104
 
plugins:
  - +config: Author::CSSON

lib/Badge/Depot/Plugin/Cpantesters.pm  view on Meta::CPAN

2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
use strict;
 
 
# ABSTRACT: CPAN testers plugin for Badge::Depot
our $AUTHORITY = 'cpan:CSSON'; # AUTHORITY
our $VERSION = '0.0102';
 
use Moose;
use Types::Standard qw/Str HashRef/;
use Types::URI qw/Uri/;
use JSON::MaybeXS 'decode_json';
 
has dist => (
    is => 'ro',
    isa => Str,

t/00-report-prereqs.dd  view on Meta::CPAN

90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
             },
'runtime' => {
               'requires' => {
                               'Badge::Depot' => '0.0104',
                               'JSON::MaybeXS' => '1.003003',
                               'Moose' => '2.1400',
                               'MooseX::AttributeShortcuts' => '0.028',
                               'Path::Tiny' => '0.072',
                               'Types::Standard' => '1.000000',
                               'Types::URI' => '0',
                               'namespace::autoclean' => '0.18',
                               'perl' => '5.010000'
                             }
             },
'test' => {
            'recommends' => {
                              'CPAN::Meta' => '2.120900'
                            },
            'requires' => {
                            'ExtUtils::MakeMaker' => '0',
                            'File::Spec' => '0',

 view all matches for this distribution
 view release on metacpan -  search on metacpan

( run in 0.708 second using v1.00-cache-2.02-grep-82fe00e-cpan-5f0c44f8eee )