Merge branch 'master' of gitmo@git.moose.perl.org:MooseX-Getopt
Tomas Doran [Wed, 12 Aug 2009 12:03:11 +0000 (13:03 +0100)]
* 'master' of gitmo@git.moose.perl.org:MooseX-Getopt:
  prep new release with fixed MANIFEST.SKIP
  auto_manifest
  bump version, prepare next release

1  2 
lib/MooseX/Getopt.pm

diff --combined lib/MooseX/Getopt.pm
@@@ -11,7 -11,7 +11,7 @@@ use Carp ()
  use Getopt::Long (); # GLD uses it anyway, doesn't hurt
  use constant HAVE_GLD => not not eval { require Getopt::Long::Descriptive };
  
- our $VERSION   = '0.18';
+ our $VERSION   = '0.20';
  our $AUTHORITY = 'cpan:STEVAN';
  
  has ARGV       => (is => 'rw', isa => 'ArrayRef', metaclass => "NoGetopt");
@@@ -423,9 -423,6 +423,9 @@@ This method will take a set of default 
  params from the command line (possibly overriding those in C<%params>)
  and then return a newly constructed object.
  
 +The special parameter C<argv>, if specified should point to an array  
 +reference with an array to use instead of C<@ARGV>.
 +
  If L<Getopt::Long/GetOptions> fails (due to invalid arguments),
  C<new_with_options> will throw an exception.