now with thaw as well as freeze, see TODOs
[gitmo/MooseX-Storage.git] / Makefile.PL
CommitLineData
e59193fb 1use strict;
2use warnings;
3use ExtUtils::MakeMaker;
4
5WriteMakefile(
e9739624 6 NAME => 'MooseX::Storage',
e59193fb 7 AUTHOR => 'Chris Prather <perigrin@cpan.org>',
e9739624 8 VERSION_FROM => 'lib/MooseX/Storage.pm',
9 ABSTRACT_FROM => 'lib/MooseX/Storage.pm',
e59193fb 10 PL_FILES => {},
11 PREREQ_PM => {
12 'Test::More' => 0,
e59193fb 13 },
14 dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
15 clean => { FILES => 'MooseX-Storage-JSON-*' },
16);