X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMooseX-Getopt.git;a=blobdiff_plain;f=lib%2FMooseX%2FGetopt.pm;h=4f1903be4ee49d7674b81a4b47ab3f68ad4cf198;hp=f3636f3fbfb21294c8cee74a9a150631a9c5d053;hb=a3e1acc3926470eb0315112310175d742c853a9a;hpb=4f214b88269f6b81131825e5f3571d35b2609ee3 diff --git a/lib/MooseX/Getopt.pm b/lib/MooseX/Getopt.pm index f3636f3..4f1903b 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 $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;