X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Build.PL;h=cabbc901a9a95adb331b2bacc4591a57562a311a;hb=124c2ba5bd480a26d5ae91767b7943024ba4ea15;hp=4468bfcea99f7c062b527197837b854c99055d50;hpb=8d8356bb0a96c1c4e909b56c812b16fc82c7bbd2;p=gitmo%2FMooseX-Storage.git diff --git a/Build.PL b/Build.PL index 4468bfc..cabbc90 100644 --- a/Build.PL +++ b/Build.PL @@ -1,6 +1,8 @@ -use Module::Build; use strict; +use warnings; + +use Module::Build; my $build = Module::Build->new( module_name => 'MooseX::Storage', @@ -11,9 +13,10 @@ my $build = Module::Build->new( # serialization format 'JSON::Any' => '0', 'Best' => '0', # << this if for loading YAML + 'Storable' => '0', # and the ability to save the # file to disk - 'IO::File' => '0', + 'IO::File' => '0', }, optional => { 'IO::AtomicFile' => '0', @@ -23,10 +26,15 @@ my $build = Module::Build->new( # them on people :) 'Test::YAML::Valid' => '0', 'Test::JSON' => '0', + # this if for the basic role with checksum + 'Digest' => '0', + 'Digest::SHA1' => '0', + 'Data::Dumper' => '0', }, build_requires => { 'Test::More' => '0.62', 'Test::Exception' => '0.21', + 'Test::Deep' => '0', }, create_makefile_pl => 'traditional', recursive_test_files => 1,