X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMooseX%2FGetopt.pm;h=e8b6812911a252ca4ea03a4019e26f9de5c85fcd;hb=04dc08522cab0990311c92bf4b6bbfdde8be240b;hp=f3636f3fbfb21294c8cee74a9a150631a9c5d053;hpb=33edcaa4819f23f5c92f2f4db8b0163866156d22;p=gitmo%2FMooseX-Getopt.git diff --git a/lib/MooseX/Getopt.pm b/lib/MooseX/Getopt.pm index f3636f3..e8b6812 100644 --- a/lib/MooseX/Getopt.pm +++ b/lib/MooseX/Getopt.pm @@ -1,12 +1,12 @@ package MooseX::Getopt; use Moose::Role; -use constant HAVE_GLD => not not eval { require Getopt::Long::Descriptive }; +use constant _HAVE_GLD => not not eval { require Getopt::Long::Descriptive }; -our $VERSION = '0.25'; +our $VERSION = '0.27'; our $AUTHORITY = 'cpan:STEVAN'; -with HAVE_GLD ? 'MooseX::Getopt::GLD' : 'MooseX::Getopt::Basic'; +with _HAVE_GLD ? 'MooseX::Getopt::GLD' : 'MooseX::Getopt::Basic'; no Moose::Role; 1;