line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Pod::Readme::Plugin::changes; |
2
|
|
|
|
|
|
|
|
3
|
1
|
|
|
1
|
|
624
|
use Moo::Role; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
8
|
|
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
our $VERSION = 'v1.2.2'; |
6
|
|
|
|
|
|
|
|
7
|
1
|
|
|
1
|
|
976
|
use CPAN::Changes 0.30; |
|
1
|
|
|
|
|
21108
|
|
|
1
|
|
|
|
|
35
|
|
8
|
1
|
|
|
1
|
|
9
|
use Path::Tiny; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
62
|
|
9
|
1
|
|
|
1
|
|
14
|
use Types::Standard qw/ Bool Str /; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
11
|
|
10
|
|
|
|
|
|
|
|
11
|
1
|
|
|
1
|
|
781
|
use Pod::Readme::Types qw/ File HeadingLevel /; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
660
|
|
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
=head1 NAME |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
Pod::Readme::Plugin::changes - Include latest Changes in README |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=head1 SYNOPSIS |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=for readme plugin changes |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head1 DESCRIPTION |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
This is a plugin for L that includes the latest release |
24
|
|
|
|
|
|
|
of a F file that conforms to the L. |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head1 ARGUMENTS |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
Defaults can be overridden with optional arguments. |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
Note that changing arguments may change later calls to this plugin. |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=head2 C |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=for readme plugin changes file='Changes' |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
If the F file has a non-standard name or location in the |
37
|
|
|
|
|
|
|
distribution, you can specify an alternative name. But note that it |
38
|
|
|
|
|
|
|
I conform the the L. |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=head2 C |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=for readme plugin changes heading-level=1 |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
This changes the heading level. (The default is 1.) |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
=head2 C |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
=for readme plugin changes title='RECENT CHANGES' |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
This option allows you to change the title of the heading. |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
=head2 C |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
=for readme plugin changes verbatim |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
If you prefer, you can display a verbatim section of the F |
57
|
|
|
|
|
|
|
file. |
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
By default, the F file will be parsed and reformatted as POD |
60
|
|
|
|
|
|
|
(equivalent to the C option). |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
=cut |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
requires 'parse_cmd_args'; |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
has 'changes_file' => ( |
67
|
|
|
|
|
|
|
is => 'rw', |
68
|
|
|
|
|
|
|
isa => File, |
69
|
|
|
|
|
|
|
coerce => sub { File->coerce(@_) }, |
70
|
|
|
|
|
|
|
default => 'Changes', |
71
|
|
|
|
|
|
|
lazy => 1, |
72
|
|
|
|
|
|
|
); |
73
|
|
|
|
|
|
|
|
74
|
|
|
|
|
|
|
has 'changes_title' => ( |
75
|
|
|
|
|
|
|
is => 'rw', |
76
|
|
|
|
|
|
|
isa => Str, |
77
|
|
|
|
|
|
|
default => 'RECENT CHANGES', |
78
|
|
|
|
|
|
|
lazy => 1, |
79
|
|
|
|
|
|
|
); |
80
|
|
|
|
|
|
|
|
81
|
|
|
|
|
|
|
has 'changes_verbatim' => ( |
82
|
|
|
|
|
|
|
is => 'rw', |
83
|
|
|
|
|
|
|
isa => Bool, |
84
|
|
|
|
|
|
|
default => 0, |
85
|
|
|
|
|
|
|
lazy => 1, |
86
|
|
|
|
|
|
|
); |
87
|
|
|
|
|
|
|
|
88
|
|
|
|
|
|
|
has 'changes_heading_level' => ( |
89
|
|
|
|
|
|
|
is => 'rw', |
90
|
|
|
|
|
|
|
isa => HeadingLevel, |
91
|
|
|
|
|
|
|
default => 1, |
92
|
|
|
|
|
|
|
lazy => 1, |
93
|
|
|
|
|
|
|
); |
94
|
|
|
|
|
|
|
|
95
|
|
|
|
|
|
|
has 'changes_run' => ( |
96
|
|
|
|
|
|
|
is => 'rw', |
97
|
|
|
|
|
|
|
isa => Bool, |
98
|
|
|
|
|
|
|
default => 0, |
99
|
|
|
|
|
|
|
lazy => 1, |
100
|
|
|
|
|
|
|
); |
101
|
|
|
|
|
|
|
|
102
|
|
|
|
|
|
|
around 'depends_on' => sub { |
103
|
|
|
|
|
|
|
my ($orig, $self) = @_; |
104
|
|
|
|
|
|
|
return ($self->changes_file, $self->$orig); |
105
|
|
|
|
|
|
|
}; |
106
|
|
|
|
|
|
|
|
107
|
|
|
|
|
|
|
sub cmd_changes { |
108
|
1
|
|
|
1
|
0
|
4
|
my ( $self, @args ) = @_; |
109
|
|
|
|
|
|
|
|
110
|
1
|
50
|
|
|
|
27
|
die "The changes plugin can only be used once" if $self->changes_run; |
111
|
|
|
|
|
|
|
|
112
|
1
|
|
|
|
|
47
|
my $res = $self->parse_cmd_args( |
113
|
|
|
|
|
|
|
[qw/ file title verbatim no-verbatim heading-level /], @args ); |
114
|
1
|
|
|
|
|
3
|
foreach my $key ( keys %{$res} ) { |
|
1
|
|
|
|
|
3
|
|
115
|
0
|
|
|
|
|
0
|
( my $name = "changes_${key}" ) =~ s/-/_/g; |
116
|
0
|
0
|
|
|
|
0
|
if ( my $method = $self->can($name) ) { |
117
|
0
|
|
|
|
|
0
|
$self->$method( $res->{$key} ); |
118
|
|
|
|
|
|
|
} |
119
|
|
|
|
|
|
|
else { |
120
|
0
|
|
|
|
|
0
|
die "Invalid key: '${key}'"; |
121
|
|
|
|
|
|
|
} |
122
|
|
|
|
|
|
|
} |
123
|
|
|
|
|
|
|
|
124
|
1
|
|
|
|
|
36
|
my $file = path( $self->base_dir, $self->changes_file ); |
125
|
|
|
|
|
|
|
|
126
|
1
|
|
|
|
|
122
|
my %opts; |
127
|
1
|
50
|
|
|
|
12
|
if ($self->zilla) { |
128
|
0
|
|
|
|
|
0
|
$opts{next_token} = qr/\{\{\$NEXT}}/; |
129
|
|
|
|
|
|
|
} |
130
|
|
|
|
|
|
|
|
131
|
1
|
|
|
|
|
5
|
my $changes = CPAN::Changes->load($file, %opts); |
132
|
1
|
|
|
|
|
13421
|
my $latest = ( $changes->releases )[-1]; |
133
|
|
|
|
|
|
|
|
134
|
1
|
50
|
|
|
|
3302
|
my $heading = $self->can( "write_head" . $self->changes_heading_level ) |
135
|
|
|
|
|
|
|
or die "Invalid heading level: " . $self->changes_heading_level; |
136
|
|
|
|
|
|
|
|
137
|
1
|
|
|
|
|
65
|
$self->$heading( $self->changes_title ); |
138
|
|
|
|
|
|
|
|
139
|
1
|
50
|
|
|
|
62
|
if ( $self->changes_verbatim ) { |
140
|
|
|
|
|
|
|
|
141
|
0
|
|
|
|
|
0
|
$self->write_verbatim( $latest->serialize ); |
142
|
|
|
|
|
|
|
|
143
|
|
|
|
|
|
|
} |
144
|
|
|
|
|
|
|
else { |
145
|
|
|
|
|
|
|
|
146
|
1
|
|
|
|
|
29
|
foreach my $group ( $latest->groups ) { |
147
|
|
|
|
|
|
|
|
148
|
3
|
50
|
|
|
|
83
|
$self->write_head2($group) |
149
|
|
|
|
|
|
|
if ( $group ne '' ); |
150
|
|
|
|
|
|
|
|
151
|
3
|
|
|
|
|
81
|
$self->write_over(4); |
152
|
3
|
|
|
|
|
70
|
foreach my $items ( $latest->get_group($group)->changes ) { |
153
|
3
|
|
|
|
|
55
|
foreach my $item ( @{$items} ) { |
|
3
|
|
|
|
|
5
|
|
154
|
5
|
|
|
|
|
62
|
$self->write_item('* '); |
155
|
5
|
|
|
|
|
114
|
$self->write_para($item); |
156
|
|
|
|
|
|
|
} |
157
|
|
|
|
|
|
|
} |
158
|
3
|
|
|
|
|
98
|
$self->write_back(); |
159
|
|
|
|
|
|
|
|
160
|
|
|
|
|
|
|
} |
161
|
|
|
|
|
|
|
|
162
|
|
|
|
|
|
|
} |
163
|
|
|
|
|
|
|
|
164
|
1
|
|
|
|
|
28
|
$self->write_para( |
165
|
|
|
|
|
|
|
sprintf( 'See the F<%s> file for a longer revision history.', |
166
|
|
|
|
|
|
|
$file->basename ) |
167
|
|
|
|
|
|
|
); |
168
|
|
|
|
|
|
|
|
169
|
1
|
|
|
|
|
45
|
$self->changes_run(1); |
170
|
|
|
|
|
|
|
} |
171
|
|
|
|
|
|
|
|
172
|
1
|
|
|
1
|
|
9
|
use namespace::autoclean; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
12
|
|
173
|
|
|
|
|
|
|
|
174
|
|
|
|
|
|
|
1; |