File Coverage

blib/lib/Dist/Zilla/Role/MintingProfile.pm
Criterion Covered Total %
statement 15 15 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 20 20 100.0


line stmt bran cond sub pod time code
1             package Dist::Zilla::Role::MintingProfile 6.029;
2             # ABSTRACT: something that can find a minting profile dir
3              
4 2     2   2525 use Moose::Role;
  2         6  
  2         138  
5              
6 2     2   10548 use Dist::Zilla::Pragmas;
  2         6  
  2         13  
7              
8 2     2   22 use namespace::autoclean;
  2         15  
  2         18  
9              
10 2     2   155 use Dist::Zilla::Path;
  2         12  
  2         19  
11 2     2   2204 use File::ShareDir;
  2         23688  
  2         292  
12              
13             #pod =head1 DESCRIPTION
14             #pod
15             #pod Plugins implementing this role should provide C<profile_dir> method, which,
16             #pod given a minting profile name, returns its directory.
17             #pod
18             #pod The minting profile is a directory, containing arbitrary files used during
19             #pod creation of new distribution. Among other things notably, it should contain the
20             #pod 'profile.ini' file, listing the plugins used for minter initialization.
21             #pod
22             #pod The default implementation C<profile_dir> looks in the module's
23             #pod L<ShareDir|File::ShareDir>.
24             #pod
25             #pod After installing your profile, users will be able to start a new distribution,
26             #pod based on your profile with the:
27             #pod
28             #pod $ dzil new -P Provider -p profile_name Distribution::Name
29             #pod
30             #pod =cut
31              
32             requires 'profile_dir';
33              
34             around profile_dir => sub {
35             my ($orig, $self, @args) = @_;
36             path($self->$orig(@args));
37             };
38              
39             1;
40              
41             __END__
42              
43             =pod
44              
45             =encoding UTF-8
46              
47             =head1 NAME
48              
49             Dist::Zilla::Role::MintingProfile - something that can find a minting profile dir
50              
51             =head1 VERSION
52              
53             version 6.029
54              
55             =head1 DESCRIPTION
56              
57             Plugins implementing this role should provide C<profile_dir> method, which,
58             given a minting profile name, returns its directory.
59              
60             The minting profile is a directory, containing arbitrary files used during
61             creation of new distribution. Among other things notably, it should contain the
62             'profile.ini' file, listing the plugins used for minter initialization.
63              
64             The default implementation C<profile_dir> looks in the module's
65             L<ShareDir|File::ShareDir>.
66              
67             After installing your profile, users will be able to start a new distribution,
68             based on your profile with the:
69              
70             $ dzil new -P Provider -p profile_name Distribution::Name
71              
72             =head1 PERL VERSION
73              
74             This module should work on any version of perl still receiving updates from
75             the Perl 5 Porters. This means it should work on any version of perl released
76             in the last two to three years. (That is, if the most recently released
77             version is v5.40, then this module should work on both v5.40 and v5.38.)
78              
79             Although it may work on older versions of perl, no guarantee is made that the
80             minimum required version will not be increased. The version may be increased
81             for any reason, and there is no promise that patches will be accepted to lower
82             the minimum required perl.
83              
84             =head1 AUTHOR
85              
86             Ricardo SIGNES 😏 <cpan@semiotic.systems>
87              
88             =head1 COPYRIGHT AND LICENSE
89              
90             This software is copyright (c) 2022 by Ricardo SIGNES.
91              
92             This is free software; you can redistribute it and/or modify it under
93             the same terms as the Perl 5 programming language system itself.
94              
95             =cut