File Coverage

blib/lib/Dist/Zilla/Stash/Mint.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package Dist::Zilla::Stash::Mint 6.029;
2             # ABSTRACT: a stash of your default minting provider/profile
3              
4 1     1   1133 use Moose;
  1         3  
  1         7  
5             with 'Dist::Zilla::Role::Stash';
6              
7 1     1   6889 use Dist::Zilla::Pragmas;
  1         3  
  1         7  
8              
9 1     1   8 use namespace::autoclean;
  1         2  
  1         7  
10              
11             has provider => (
12             is => 'ro',
13             isa => 'Str',
14             required => 0,
15             default => 'Default',
16             );
17              
18             has profile => (
19             is => 'ro',
20             isa => 'Str',
21             required => 0,
22             default => 'default',
23             );
24              
25             __PACKAGE__->meta->make_immutable;
26             1;
27              
28             __END__
29              
30             =pod
31              
32             =encoding UTF-8
33              
34             =head1 NAME
35              
36             Dist::Zilla::Stash::Mint - a stash of your default minting provider/profile
37              
38             =head1 VERSION
39              
40             version 6.029
41              
42             =head1 PERL VERSION
43              
44             This module should work on any version of perl still receiving updates from
45             the Perl 5 Porters. This means it should work on any version of perl released
46             in the last two to three years. (That is, if the most recently released
47             version is v5.40, then this module should work on both v5.40 and v5.38.)
48              
49             Although it may work on older versions of perl, no guarantee is made that the
50             minimum required version will not be increased. The version may be increased
51             for any reason, and there is no promise that patches will be accepted to lower
52             the minimum required perl.
53              
54             =head1 AUTHOR
55              
56             Ricardo SIGNES 😏 <cpan@semiotic.systems>
57              
58             =head1 COPYRIGHT AND LICENSE
59              
60             This software is copyright (c) 2022 by Ricardo SIGNES.
61              
62             This is free software; you can redistribute it and/or modify it under
63             the same terms as the Perl 5 programming language system itself.
64              
65             =cut