From: Matt S Trout Date: Sat, 13 Nov 2010 20:45:52 +0000 (+0000) Subject: Makefile.PL X-Git-Tag: 0.009001~23 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=6d71fae7388c406fe3a6b6e0eefa478827841d00;p=gitmo%2FMoo.git Makefile.PL --- diff --git a/Makefile.PL b/Makefile.PL new file mode 100644 index 0000000..c99c9e7 --- /dev/null +++ b/Makefile.PL @@ -0,0 +1,11 @@ +use strict; +use warnings FATAL => 'all'; +use ExtUtils::MakeMaker; + +WriteMakefile( + NAME => 'Moo', + VERSION_FROM => 'lib/Moo.pm', + ABSTRACT_FROM => 'lib/Moo.pm', + AUTHOR => 'Matt S Trout ', + LICENSE => 'perl', +); diff --git a/lib/Moo.pm b/lib/Moo.pm index f64067b..fdaec57 100644 --- a/lib/Moo.pm +++ b/lib/Moo.pm @@ -3,6 +3,9 @@ package Moo; use strictures 1; use Moo::_Utils; +our $VERSION = '0.009001'; # 0.9.1 +$VERSION = eval $VERSION; + our %MAKERS; sub import {