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.99'; |
7
|
4
|
|
|
4
|
|
201918
|
use Moose; |
|
4
|
|
|
|
|
943690
|
|
|
4
|
|
|
|
|
27
|
|
8
|
|
|
|
|
|
|
extends 'MooseX::App::Cmd'; |
9
|
4
|
|
|
4
|
|
27622
|
use namespace::autoclean; |
|
4
|
|
|
|
|
13228
|
|
|
4
|
|
|
|
|
32
|
|
10
|
|
|
|
|
|
|
|
11
|
4
|
|
|
4
|
|
337
|
use 5.014; # strict, unicode_strings |
|
4
|
|
|
|
|
15
|
|
12
|
4
|
|
|
4
|
|
743
|
use utf8; |
|
4
|
|
|
|
|
35
|
|
|
4
|
|
|
|
|
25
|
|
13
|
4
|
|
|
4
|
|
630
|
use autodie; |
|
4
|
|
|
|
|
23527
|
|
|
4
|
|
|
|
|
23
|
|
14
|
4
|
|
|
4
|
|
23530
|
use warnings qw/ FATAL utf8 /; |
|
4
|
|
|
|
|
11
|
|
|
4
|
|
|
|
|
204
|
|
15
|
4
|
|
|
4
|
|
856
|
use open qw/ :std :utf8 /; |
|
4
|
|
|
|
|
1930
|
|
|
4
|
|
|
|
|
26
|
|
16
|
4
|
|
|
4
|
|
1245
|
use charnames qw/ :full /; |
|
4
|
|
|
|
|
46167
|
|
|
4
|
|
|
|
|
28
|
|
17
|
|
|
|
|
|
|
|
18
|
1
|
|
|
1
|
1
|
1437
|
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.99 |
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 |