Makefile.PL
Matt S Trout [Sat, 13 Nov 2010 20:45:52 +0000 (20:45 +0000)]
Makefile.PL [new file with mode: 0644]
lib/Moo.pm

diff --git a/Makefile.PL b/Makefile.PL
new file mode 100644 (file)
index 0000000..c99c9e7
--- /dev/null
@@ -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 <mst@shadowcat.co.uk>',
+  LICENSE => 'perl',
+);
index f64067b..fdaec57 100644 (file)
@@ -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 {