line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Dist::Zilla::Plugin::FullFaker; |
2
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
# $Id: FullFaker.pm 48 2015-07-01 06:38:25Z stro $ |
4
|
|
|
|
|
|
|
|
5
|
1
|
|
|
1
|
|
4081
|
use strict; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
30
|
|
6
|
1
|
|
|
1
|
|
4
|
use warnings; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
23
|
|
7
|
1
|
|
|
1
|
|
486
|
use Moose; |
|
1
|
|
|
|
|
344677
|
|
|
1
|
|
|
|
|
5
|
|
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
extends qw[Dist::Zilla::Plugin::FakeFaker]; |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
sub gather_files { |
12
|
0
|
|
|
0
|
0
|
|
return; |
13
|
|
|
|
|
|
|
} |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
__PACKAGE__->meta->make_immutable; |
16
|
|
|
|
|
|
|
|
17
|
1
|
|
|
1
|
|
5172
|
no Moose; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
3
|
|
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
BEGIN { |
20
|
1
|
|
|
1
|
|
180
|
$Dist::Zilla::Plugin::FullFaker::VERSION = '1.002'; |
21
|
|
|
|
|
|
|
} |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
1; |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=head1 NAME |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
Dist::Zilla::Plugin::FullFaker - using existing Makefile.PL from other gatherer |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=head1 SYNOPSIS |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
# in dist.ini |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
[FullFaker] |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=head1 DESCRIPTION |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
Dist::Zilla::Plugin::FullFaker is a L<Dist::Zilla> plugin for those situations |
38
|
|
|
|
|
|
|
when you want to use L<Dist::Zilla::Plugin::FakeFaker> but you have another |
39
|
|
|
|
|
|
|
gatherer that added your C<Makefile.PL> file. |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
Instead of specifying C<[FakeFaker]> in one's C<dist.ini>, specify |
42
|
|
|
|
|
|
|
C<[FullFaker]> |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=head1 AUTHOR |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
Serguei Trouchelle <stro@cpan.org> |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
=head1 LICENSE AND COPYRIGHT |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
Copyright (c) 2015 by Serguei Trouchelle |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
53
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
=cut |
56
|
|
|
|
|
|
|
|