* MooseX::Getopt: use explict Getopt::Long module.
Piotr Roszatycki [Fri, 14 Nov 2008 15:37:36 +0000 (15:37 +0000)]
lib/MooseX/Getopt.pm
lib/MooseX/Getopt/Parser/Descriptive.pm
lib/MooseX/Getopt/Parser/Long.pm

index fae2483..8d0acd3 100644 (file)
@@ -12,6 +12,9 @@ use MooseX::Getopt::Meta::Attribute;
 use MooseX::Getopt::Meta::Attribute::NoGetopt;
 
 
+use Getopt::Long ();
+
+
 our $VERSION   = '0.150001';
 our $AUTHORITY = 'cpan:STEVAN';
 
index c212eb1..1b69fb5 100644 (file)
@@ -5,9 +5,10 @@ use Moose;
 
 with 'MooseX::Getopt::Parser';
 
-use Getopt::Long::Descriptive;
 use MooseX::Getopt::OptionTypeMap;
 
+use Getopt::Long::Descriptive ();
+
 
 # Special configuration for parser
 has config => (
index d0342ce..e697e1f 100644 (file)
@@ -5,9 +5,10 @@ use Moose;
 
 with 'MooseX::Getopt::Parser';
 
-use Getopt::Long;
 use MooseX::Getopt::OptionTypeMap;
 
+use Getopt::Long ();
+
 
 # Special configuration for parser
 has config => (