From: Tomas Doran Date: Thu, 26 Nov 2009 22:41:47 +0000 (+0000) Subject: Fix this not having a $VERSION X-Git-Tag: 0.26~6 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMooseX-Getopt.git;a=commitdiff_plain;h=60321fa1aa5b3c94e62c54b70e8c74e3b7e675b0;hp=15460353baa2bd45de9b8667926b9e0d67a8d4db Fix this not having a $VERSION --- diff --git a/lib/MooseX/Getopt/Basic.pm b/lib/MooseX/Getopt/Basic.pm index 721fd3f..e2d2740 100644 --- a/lib/MooseX/Getopt/Basic.pm +++ b/lib/MooseX/Getopt/Basic.pm @@ -9,6 +9,8 @@ use Carp (); use Getopt::Long (); +our $VERSION = '0.25'; + has ARGV => (is => 'rw', isa => 'ArrayRef', metaclass => "NoGetopt"); has extra_argv => (is => 'rw', isa => 'ArrayRef', metaclass => "NoGetopt");