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.037;
2             # ABSTRACT: a stash of your default minting provider/profile
3              
4 1     1   2473 use Moose;
  1         3  
  1         12  
5             with 'Dist::Zilla::Role::Stash';
6              
7 1     1   11858 use Dist::Zilla::Pragmas;
  1         2  
  1         11  
8              
9 1     1   9 use namespace::autoclean;
  1         3  
  1         11  
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.037
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
46             released in the last two to three years. (That is, if the most recently
47             released version is v5.40, then this module should work on both v5.40 and
48             v5.38.)
49              
50             Although it may work on older versions of perl, no guarantee is made that the
51             minimum required version will not be increased. The version may be increased
52             for any reason, and there is no promise that patches will be accepted to
53             lower the minimum required perl.
54              
55             =head1 AUTHOR
56              
57             Ricardo SIGNES 😏 <cpan@semiotic.systems>
58              
59             =head1 COPYRIGHT AND LICENSE
60              
61             This software is copyright (c) 2026 by Ricardo SIGNES.
62              
63             This is free software; you can redistribute it and/or modify it under
64             the same terms as the Perl 5 programming language system itself.
65              
66             =cut