From: Stevan Little Date: Sun, 25 May 2008 04:26:58 +0000 (+0000) Subject: 0.13 X-Git-Tag: 0.14~6 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=6d0abbe8b4028920d78f810e6622936e7f80dfa6;p=gitmo%2FMooseX-Storage.git 0.13 --- diff --git a/Build.PL b/Build.PL deleted file mode 100644 index 0f28d97..0000000 --- a/Build.PL +++ /dev/null @@ -1,3 +0,0 @@ -# Dear Distribution Packager. This use of require is intentional. -# Module::Install detects Build.PL usage and acts accordingly. -require 'Makefile.PL'; diff --git a/Changes b/Changes index 9948491..3707da9 100644 --- a/Changes +++ b/Changes @@ -1,11 +1,14 @@ Revision history for MooseX-Storage -0.13 +0.13 Sat. May 24, 2008 * MooseX::Storage::Engine - added find_type_handler_for($name) method to make finding type handlers easier - improved error messages + ~ removed Build.PL since Module::Install + no longer supports it + 0.12 Fri. March 14, 2008 - added build_requires for Test::Deep (awwaiid) diff --git a/MANIFEST b/MANIFEST new file mode 100644 index 0000000..ecdabd0 --- /dev/null +++ b/MANIFEST @@ -0,0 +1,58 @@ +Changes +inc/Module/AutoInstall.pm +inc/Module/Install.pm +inc/Module/Install/AutoInstall.pm +inc/Module/Install/Base.pm +inc/Module/Install/Can.pm +inc/Module/Install/Fetch.pm +inc/Module/Install/Include.pm +inc/Module/Install/Makefile.pm +inc/Module/Install/Metadata.pm +inc/Module/Install/Win32.pm +inc/Module/Install/WriteAll.pm +lib/MooseX/Storage.pm +lib/MooseX/Storage/Base/WithChecksum.pm +lib/MooseX/Storage/Basic.pm +lib/MooseX/Storage/Deferred.pm +lib/MooseX/Storage/Engine.pm +lib/MooseX/Storage/Engine/IO/AtomicFile.pm +lib/MooseX/Storage/Engine/IO/File.pm +lib/MooseX/Storage/Format/JSON.pm +lib/MooseX/Storage/Format/Storable.pm +lib/MooseX/Storage/Format/YAML.pm +lib/MooseX/Storage/IO/AtomicFile.pm +lib/MooseX/Storage/IO/File.pm +lib/MooseX/Storage/IO/StorableFile.pm +lib/MooseX/Storage/Meta/Attribute/DoNotSerialize.pm +lib/MooseX/Storage/Meta/Attribute/Trait/DoNotSerialize.pm +lib/MooseX/Storage/Util.pm +Makefile.PL +MANIFEST This list of files +META.yml +README +t/000_load.t +t/001_basic.t +t/002_basic_io.t +t/002_basic_w_subtypes.t +t/003_basic_w_embedded_objects.t +t/004_w_cycles.t +t/005_w_versions_and_authority_check.t +t/006_w_custom_type_handlers.t +t/007_false.t +t/008_do_not_serialize.t +t/010_basic_json.t +t/011_basic_json_w_utf8.t +t/020_basic_yaml.t +t/030_with_checksum.t +t/040_basic_utils.t +t/050_basic_storable.t +t/060_basic_deferred.t +t/061_basic_deferred_w_io.t +t/100_io.t +t/101_io_atomic.t +t/102_io_storable_file.t +t/103_io_storable_file_custom.t +t/104_io_w_utf8.t +t/105_io_atomic_w_utf8.t +t/pod-coverage.t +t/pod.t diff --git a/Makefile.PL b/Makefile.PL index 79b6e38..f403a4b 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -34,7 +34,5 @@ build_requires 'Test::More' => '0.42'; build_requires 'Test::Deep' => '0'; build_requires 'Test::Exception' => '0'; -no_index 'directory' => 'ex'; - auto_install; WriteAll;