comparison lib/CPT/Parameter/Option/Generic.pm @ 1:f093e08f21f3 draft default tip

planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
author cpt
date Mon, 05 Jun 2023 02:47:24 +0000
parents
children
comparison
equal deleted inserted replaced
0:b8b8b52904a5 1:f093e08f21f3
1 package CPT::Parameter::Option::Generic;
2 use Moose;
3 with 'CPT::Parameter::Option';
4
5
6 sub getopt_format {
7 return '=s';
8 }
9 no Moose;
10 1;
11
12 __END__
13
14 =pod
15
16 =encoding UTF-8
17
18 =head1 NAME
19
20 CPT::Parameter::Option::Generic
21
22 =head1 VERSION
23
24 version 1.99.4
25
26 =head2 getopt_format
27
28 Returns the format character for a given CPT::Parameter::* type
29
30 =head1 AUTHOR
31
32 Eric Rasche <rasche.eric@yandex.ru>
33
34 =head1 COPYRIGHT AND LICENSE
35
36 This software is Copyright (c) 2014 by Eric Rasche.
37
38 This is free software, licensed under:
39
40 The GNU General Public License, Version 3, June 2007
41
42 =cut