Subject: | Help and usage don't seem to work with Getopt::Long::Descriptive |
When using Getopt::Long::Descriptive, -? --help and --usage are not
recognized and do not behave as described in documentation :
If Getopt::Long::Descriptive is installed and any of the following
command line params are passed, the program will exit with usage
information....
--?
--help
--usage
Example :
test.pl --help
Unknown option: help
usage: test.pl [long options...]
--number
Perl version 5.8.8.
Test files appended.
Subject: | MyApp.pm |
package MyApp;
use Moose;
with 'MooseX::Getopt';
has 'number' => (
is => 'rw',
isa => 'Int'
);
1;