Add mysteriously-missing Bool handling
[gitmo/MooseX-Storage.git] / Build.PL
CommitLineData
e59193fb 1
8d8356bb 2use strict;
c86a46cc 3use warnings;
4
5use Module::Build;
8d8356bb 6
7my $build = Module::Build->new(
8 module_name => 'MooseX::Storage',
9 license => 'perl',
10 requires => {
11 'Moose' => '0.20',
12 # you should have at least one
13 # serialization format
14 'JSON::Any' => '0',
15 'Best' => '0', # << this if for loading YAML
16 # and the ability to save the
17 # file to disk
c4a322ec 18 'IO::File' => '0',
e59193fb 19 },
8d8356bb 20 optional => {
21 'IO::AtomicFile' => '0',
22 # these are only used in the
23 # test, I recommend them, but
24 # there is no need to force
25 # them on people :)
26 'Test::YAML::Valid' => '0',
27 'Test::JSON' => '0',
c86a46cc 28 # this if for the basic role with checksum
29 'Digest' => '0',
30 'Digest::SHA1' => '0',
31 'Data::Dumper' => '0',
8d8356bb 32 },
33 build_requires => {
34 'Test::More' => '0.62',
35 'Test::Exception' => '0.21',
c86a46cc 36 'Test::Deep' => '0',
8d8356bb 37 },
38 create_makefile_pl => 'traditional',
39 recursive_test_files => 1,
40 add_to_cleanup => [
41 'META.yml', '*.bak', '*.gz', 'Makefile.PL',
42 ],
e59193fb 43);
44
8d8356bb 45$build->create_build_script;
46