line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Book::Collate; |
2
|
|
|
|
|
|
|
|
3
|
1
|
|
|
1
|
|
77867
|
use 5.006; |
|
1
|
|
|
|
|
5
|
|
4
|
1
|
|
|
1
|
|
6
|
use strict; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
40
|
|
5
|
1
|
|
|
1
|
|
6
|
use warnings; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
64
|
|
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
=head1 NAME |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
Book::Collate - Tools to Collate and Report Text Documents |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
=head1 VERSION |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
Version 0.0.1 |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=cut |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
our $VERSION = 'v0.0.1'; |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head1 SYNOPSIS |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
Tools allow iteration through text files and generation of a single combined |
23
|
|
|
|
|
|
|
file or a set of modified individual files. They can provide grade level and |
24
|
|
|
|
|
|
|
word count reports. |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=cut |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
#use lib 'lib/Book/Collate'; |
29
|
1
|
|
|
1
|
|
557
|
use Book::Collate::Section; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
42
|
|
30
|
1
|
|
|
1
|
|
564
|
use Book::Collate::Book; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
35
|
|
31
|
1
|
|
|
1
|
|
452
|
use Book::Collate::Report; |
|
1
|
|
|
|
|
4
|
|
|
1
|
|
|
|
|
35
|
|
32
|
1
|
|
|
1
|
|
504
|
use Book::Collate::Writer::Report; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
43
|
|
33
|
|
|
|
|
|
|
#use Text; |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=head1 AUTHOR |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
Leam Hall, C<< >> |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=head1 BUGS |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
Please report any bugs or feature requests to i |
43
|
|
|
|
|
|
|
C, or through the web interface at |
44
|
|
|
|
|
|
|
L. |
45
|
|
|
|
|
|
|
I will be notified, and then you'll automatically be notified of progress |
46
|
|
|
|
|
|
|
on your bug as I make changes. |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
=head1 SUPPORT |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
You can find documentation for this module with the perldoc command. |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
perldoc Book::Collate |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
You can also look for information at: |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
=over 4 |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
=item * RT: CPAN's request tracker (report bugs here) |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
L |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
=item * CPAN Ratings |
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
L |
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
=item * Search CPAN |
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
L |
73
|
|
|
|
|
|
|
|
74
|
|
|
|
|
|
|
=back |
75
|
|
|
|
|
|
|
|
76
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
=head1 ACKNOWLEDGEMENTS |
78
|
|
|
|
|
|
|
|
79
|
|
|
|
|
|
|
|
80
|
|
|
|
|
|
|
=head1 LICENSE AND COPYRIGHT |
81
|
|
|
|
|
|
|
|
82
|
|
|
|
|
|
|
This software is Copyright (c) 2021 by Leam Hall. |
83
|
|
|
|
|
|
|
|
84
|
|
|
|
|
|
|
This is free software, licensed under: |
85
|
|
|
|
|
|
|
|
86
|
|
|
|
|
|
|
The Artistic License 2.0 (GPL Compatible) |
87
|
|
|
|
|
|
|
|
88
|
|
|
|
|
|
|
|
89
|
|
|
|
|
|
|
=cut |
90
|
|
|
|
|
|
|
|
91
|
|
|
|
|
|
|
1; # End of Book::Collate |