line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package CLI::Osprey::Descriptive; |
2
|
|
|
|
|
|
|
|
3
|
4
|
|
|
4
|
|
34
|
use strict; |
|
4
|
|
|
|
|
8
|
|
|
4
|
|
|
|
|
119
|
|
4
|
4
|
|
|
4
|
|
21
|
use warnings; |
|
4
|
|
|
|
|
8
|
|
|
4
|
|
|
|
|
220
|
|
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
# ABSTRACT: Getopt::Long::Descriptive subclass for CLI::Osprey use |
7
|
|
|
|
|
|
|
our $VERSION = '0.07'; # VERSION |
8
|
|
|
|
|
|
|
our $AUTHORITY = 'cpan:ARODLAND'; # AUTHORITY |
9
|
|
|
|
|
|
|
|
10
|
4
|
|
|
4
|
|
2490
|
use Getopt::Long::Descriptive 0.100; |
|
4
|
|
|
|
|
160271
|
|
|
4
|
|
|
|
|
33
|
|
11
|
4
|
|
|
4
|
|
3495
|
use CLI::Osprey::Descriptive::Usage; |
|
4
|
|
|
|
|
12
|
|
|
4
|
|
|
|
|
305
|
|
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
our @ISA = ('Getopt::Long::Descriptive'); |
14
|
|
|
|
|
|
|
|
15
|
14
|
|
|
14
|
1
|
3642
|
sub usage_class { 'CLI::Osprey::Descriptive::Usage' } |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
1; |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
__END__ |