From: Guillermo Roditi Date: Tue, 26 Aug 2008 00:23:33 +0000 (+0000) Subject: yay. works X-Git-Tag: 0.001000^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=HEAD;hp=63491692f764fd78c57a148ad6354d8e99bad264;p=gitmo%2FMooseX-Types-Data-GUID.git yay. works --- diff --git a/Changes b/Changes new file mode 100644 index 0000000..5291ed2 --- /dev/null +++ b/Changes @@ -0,0 +1,2 @@ +0.001000 25-08-2008 + - Initial release diff --git a/Makefile.PL b/Makefile.PL new file mode 100644 index 0000000..a0e6360 --- /dev/null +++ b/Makefile.PL @@ -0,0 +1,18 @@ +#! /usr/bin/perl -w + +# Load the Module::Install bundled in ./inc/ +use inc::Module::Install; + +# Define metadata +name 'MooseX-Types-Data-GUID'; +abstract 'Moose Type Constraint and Coercions for Data::GUID objects.'; +all_from 'lib/MooseX/Types/Data/GUID.pm'; + +# Specific dependencies +requires 'Moose'; +requires 'Data::GUID'; +requires 'MooseX::Types'; + +build_requires 'Test::More' => 0; + +WriteAll; diff --git a/README b/README new file mode 100644 index 0000000..427ef54 --- /dev/null +++ b/README @@ -0,0 +1,4 @@ +perl Makefile.PL +make test +sudo make install +make clean \ No newline at end of file diff --git a/lib/MooseX/Types/Data/GUID.pm b/lib/MooseX/Types/Data/GUID.pm index d36cf56..4b54008 100644 --- a/lib/MooseX/Types/Data/GUID.pm +++ b/lib/MooseX/Types/Data/GUID.pm @@ -3,6 +3,8 @@ package MooseX::Types::Data::GUID; use strict; use warnings; +our $VERSION = '0.001000'; + use Data::GUID; use MooseX::Types -declare => [qw/ GUID /]; use Moose::Util::TypeConstraints;