line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Dist::Zilla::Role::MintingProfile 6.030; |
2
|
|
|
|
|
|
|
# ABSTRACT: something that can find a minting profile dir |
3
|
|
|
|
|
|
|
|
4
|
2
|
|
|
2
|
|
2550
|
use Moose::Role; |
|
2
|
|
|
|
|
6
|
|
|
2
|
|
|
|
|
148
|
|
5
|
|
|
|
|
|
|
|
6
|
2
|
|
|
2
|
|
10628
|
use Dist::Zilla::Pragmas; |
|
2
|
|
|
|
|
9
|
|
|
2
|
|
|
|
|
15
|
|
7
|
|
|
|
|
|
|
|
8
|
2
|
|
|
2
|
|
16
|
use namespace::autoclean; |
|
2
|
|
|
|
|
7
|
|
|
2
|
|
|
|
|
14
|
|
9
|
|
|
|
|
|
|
|
10
|
2
|
|
|
2
|
|
159
|
use Dist::Zilla::Path; |
|
2
|
|
|
|
|
6
|
|
|
2
|
|
|
|
|
23
|
|
11
|
2
|
|
|
2
|
|
2104
|
use File::ShareDir; |
|
2
|
|
|
|
|
24205
|
|
|
2
|
|
|
|
|
322
|
|
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.030 |
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) 2023 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 |