From: stevan Date: Sat, 5 Aug 2006 21:10:26 +0000 (+0000) Subject: Moose-policy X-Git-Tag: 0_01~16 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=82cfc0496fef93b198fc6e6a6f85d102eedacf1f;p=gitmo%2FMoose-Policy.git Moose-policy --- 82cfc0496fef93b198fc6e6a6f85d102eedacf1f diff --git a/Build.PL b/Build.PL new file mode 100644 index 0000000..fbc4aec --- /dev/null +++ b/Build.PL @@ -0,0 +1,25 @@ +use Module::Build; + +use strict; + +my $build = Module::Build->new( + module_name => 'Moose::Policy', + license => 'perl', + requires => { + 'Moose' => '0', + }, + optional => { + }, + build_requires => { + 'Test::More' => '0.62', + 'Test::Exception' => '0.21', + }, + create_makefile_pl => 'traditional', + recursive_test_files => 1, + add_to_cleanup => [ + 'META.yml', '*.bak', '*.gz', 'Makefile.PL', + ], +); + +$build->create_build_script; + diff --git a/Changes b/Changes new file mode 100644 index 0000000..9bab406 --- /dev/null +++ b/Changes @@ -0,0 +1,4 @@ +Revision history for Perl extension Moose-Policy + +0.01 + - module created \ No newline at end of file diff --git a/MANIFEST b/MANIFEST new file mode 100644 index 0000000..e69de29 diff --git a/MANIFEST.SKIP b/MANIFEST.SKIP new file mode 100644 index 0000000..3de3ebc --- /dev/null +++ b/MANIFEST.SKIP @@ -0,0 +1,19 @@ +^_build +^Build$ +^blib +~$ +\.bak$ +^MANIFEST\.SKIP$ +CVS +\.svn +\.DS_Store +cover_db +\..*\.sw.?$ +^Makefile$ +^pm_to_blib$ +^MakeMaker-\d +^blibdirs$ +\.old$ +^#.*#$ +^\.# +^TODO$ \ No newline at end of file diff --git a/README b/README new file mode 100644 index 0000000..9d86e51 --- /dev/null +++ b/README @@ -0,0 +1,25 @@ +Moose::Policy version 0.01 +=========================== + +See the individual module documentation for more information + +INSTALLATION + +To install this module type the following: + + perl Makefile.PL + make + make test + make install + +DEPENDENCIES + +This module requires these other modules and libraries: + + Moose + +COPYRIGHT AND LICENCE + +This library is free software; you can redistribute it and/or modify +it under the same terms as Perl itself. + diff --git a/lib/Moose/Policy.pm b/lib/Moose/Policy.pm new file mode 100644 index 0000000..ee4a660 --- /dev/null +++ b/lib/Moose/Policy.pm @@ -0,0 +1,10 @@ + +package Moose::Policy; + +use strict; +use warnings; + +1; + +__END__ + diff --git a/t/000_load.t b/t/000_load.t new file mode 100644 index 0000000..298e89c --- /dev/null +++ b/t/000_load.t @@ -0,0 +1,10 @@ +#!/usr/bin/perl + +use strict; +use warnings; + +use Test::More tests => 1; + +BEGIN { + use_ok('Moose'); +} \ No newline at end of file diff --git a/t/001_basic.t b/t/001_basic.t new file mode 100644 index 0000000..298e89c --- /dev/null +++ b/t/001_basic.t @@ -0,0 +1,10 @@ +#!/usr/bin/perl + +use strict; +use warnings; + +use Test::More tests => 1; + +BEGIN { + use_ok('Moose'); +} \ No newline at end of file