File Coverage

blib/lib/Getopt/Alt/Dynamic.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package Getopt::Alt::Dynamic;
2              
3             # Created on: 2013-05-07 19:53:24
4             # Create by: Ivan Wills
5             # $Id$
6             # $Revision$, $HeadURL$, $Date$
7             # $Revision$, $Source$, $Date$
8              
9 9     9   23494 use Moose;
  9         22  
  9         79  
10 9     9   49338 use version;
  9         26  
  9         83  
11 9     9   794 use Carp;
  9         21  
  9         861  
12              
13             our $VERSION = version->new('0.5.2');
14              
15             1;
16              
17             __END__
18              
19             =head1 NAME
20              
21             Getopt::Alt::Dynamic - Base for creating the dynamic command line elements
22              
23             =head1 VERSION
24              
25             This documentation refers to Getopt::Alt::Dynamic version 0.5.2.
26              
27             =head1 SYNOPSIS
28              
29             use Getopt::Alt::Dynamic;
30              
31             # Brief but working code example(s) here showing the most common usage(s)
32             # This section will be as far as many users bother reading, so make it as
33             # educational and exemplary as possible.
34              
35             =head1 DESCRIPTION
36              
37             =head1 SUBROUTINES/METHODS
38              
39             =head1 DIAGNOSTICS
40              
41             =head1 CONFIGURATION AND ENVIRONMENT
42              
43             =head1 DEPENDENCIES
44              
45             =head1 INCOMPATIBILITIES
46              
47             =head1 BUGS AND LIMITATIONS
48              
49             There are no known bugs in this module.
50              
51             Please report problems to Ivan Wills (ivan.wills@gmail.com).
52              
53             Patches are welcome.
54              
55             =head1 AUTHOR
56              
57             Ivan Wills - (ivan.wills@gmail.com)
58              
59             =head1 LICENSE AND COPYRIGHT
60              
61             Copyright (c) 2013 Ivan Wills (14 Mullion Close, Hornsby Heights, NSW Australia 2077).
62             All rights reserved.
63              
64             This module is free software; you can redistribute it and/or modify it under
65             the same terms as Perl itself. See L<perlartistic>. This program is
66             distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
67             without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
68             PARTICULAR PURPOSE.
69              
70             =cut