Convert HAVE_GLD to _HAVE_GLD .
Shlomi Fish [Thu, 10 Dec 2009 18:44:36 +0000 (20:44 +0200)]
This way it doens't need to be documented.

lib/MooseX/Getopt.pm

index f3636f3..4f1903b 100644 (file)
@@ -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;