From: Adam Paynter Date: Wed, 22 Mar 2006 20:11:02 +0000 (+0000) Subject: Initial Import X-Git-Tag: 0.01~4 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=7cf4ac7fca8c557047a3d5390959da70bd3d8af2;hp=77f8d0c0c5582e32234c473f213534b5ca50d287;p=dbsrgits%2FDBIx-Class-DateTime-Epoch.git Initial Import --- diff --git a/Build.PL b/Build.PL new file mode 100644 index 0000000..e8f0c23 --- /dev/null +++ b/Build.PL @@ -0,0 +1,19 @@ +use strict; + +use Module::Build; + +my $build = Module::Build->new( + module_name => 'DBIx::Class::DateTime::Epoch', + dist_author => 'Brian Cassidy ', + license => 'perl', + create_readme => 1, + create_makefile_pl => 'traditional', + requires => { + 'DateTime' => 0 + }, + build_requires => { + 'Test::More' => 0 + }, +); + +$build->create_build_script; diff --git a/Changes b/Changes new file mode 100644 index 0000000..1aeee81 --- /dev/null +++ b/Changes @@ -0,0 +1,4 @@ +Revision history for Perl extension DBIx::Class::DateTime::Epoch. + +0.01 Wed Mar 22 2006 + - original version; \ No newline at end of file diff --git a/MANIFEST b/MANIFEST new file mode 100644 index 0000000..966d9e7 --- /dev/null +++ b/MANIFEST @@ -0,0 +1,7 @@ +Build.PL +Changes +lib/DBIx/Class/DateTime/Epoch.pm +MANIFEST This list of files +t/01-use.t +t/98-pod_coverage.t +t/99-pod.t diff --git a/t/01-use.t b/t/01-use.t new file mode 100644 index 0000000..c0f7dba --- /dev/null +++ b/t/01-use.t @@ -0,0 +1,5 @@ +use Test::More tests => 1; + +BEGIN { + use_ok( 'DBIx::Class::DateTime::Epoch' ); +} diff --git a/t/98-pod_coverage.t b/t/98-pod_coverage.t new file mode 100644 index 0000000..73a83b0 --- /dev/null +++ b/t/98-pod_coverage.t @@ -0,0 +1,4 @@ +use Test::More; +eval "use Test::Pod::Coverage 1.00"; +plan skip_all => "Test::Pod::Coverage 1.00 required for testing POD coverage" if $@; +all_pod_coverage_ok(); \ No newline at end of file diff --git a/t/99-pod.t b/t/99-pod.t new file mode 100644 index 0000000..3afe2fa --- /dev/null +++ b/t/99-pod.t @@ -0,0 +1,4 @@ +use Test::More; +eval "use Test::Pod 1.00"; +plan skip_all => "Test::Pod 1.00 required for testing POD" if $@; +all_pod_files_ok(); \ No newline at end of file