line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
# ABSTRACT: Static website generation system |
2
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
|
4
|
|
|
|
|
|
|
package HiD::App; |
5
|
|
|
|
|
|
|
our $AUTHORITY = 'cpan:GENEHACK'; |
6
|
|
|
|
|
|
|
$HiD::App::VERSION = '1.991'; |
7
|
4
|
|
|
4
|
|
157749
|
use Moose; |
|
4
|
|
|
|
|
757246
|
|
|
4
|
|
|
|
|
33
|
|
8
|
|
|
|
|
|
|
extends 'MooseX::App::Cmd'; |
9
|
4
|
|
|
4
|
|
26731
|
use namespace::autoclean; |
|
4
|
|
|
|
|
12015
|
|
|
4
|
|
|
|
|
28
|
|
10
|
|
|
|
|
|
|
|
11
|
4
|
|
|
4
|
|
361
|
use 5.014; # strict, unicode_strings |
|
4
|
|
|
|
|
18
|
|
12
|
4
|
|
|
4
|
|
1022
|
use utf8; |
|
4
|
|
|
|
|
25
|
|
|
4
|
|
|
|
|
25
|
|
13
|
4
|
|
|
4
|
|
578
|
use autodie; |
|
4
|
|
|
|
|
22072
|
|
|
4
|
|
|
|
|
25
|
|
14
|
4
|
|
|
4
|
|
21087
|
use warnings qw/ FATAL utf8 /; |
|
4
|
|
|
|
|
11
|
|
|
4
|
|
|
|
|
227
|
|
15
|
4
|
|
|
4
|
|
790
|
use open qw/ :std :utf8 /; |
|
4
|
|
|
|
|
1918
|
|
|
4
|
|
|
|
|
26
|
|
16
|
4
|
|
|
4
|
|
1098
|
use charnames qw/ :full /; |
|
4
|
|
|
|
|
46196
|
|
|
4
|
|
|
|
|
31
|
|
17
|
|
|
|
|
|
|
|
18
|
1
|
|
|
1
|
1
|
890
|
sub default_command { 'help' }; |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
__PACKAGE__->meta->make_immutable; |
21
|
|
|
|
|
|
|
1; |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
__END__ |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=pod |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=encoding UTF-8 |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=head1 NAME |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
HiD::App - Static website generation system |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=head1 SYNOPSIS |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
See C<perldoc hid> for usage information. |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=head1 VERSION |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
version 1.991 |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
=head1 AUTHOR |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
John SJ Anderson <genehack@genehack.org> |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
This software is copyright (c) 2015 by John SJ Anderson. |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
50
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
=cut |