X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMooseX%2FStorage%2FMeta%2FAttribute%2FDoNotSerialize.pm;h=b309eb76c4ebc91d3802fbfa9581695407de5a2a;hb=7b428d1fd844e32dc3500a1fefc6cd794dc45fc8;hp=e7b3ad3390851989693ba6bb8e39f76f8d078ad5;hpb=b430caa3fe1898fd40d743f5ff1347b7df9671f2;p=gitmo%2FMooseX-Storage.git diff --git a/lib/MooseX/Storage/Meta/Attribute/DoNotSerialize.pm b/lib/MooseX/Storage/Meta/Attribute/DoNotSerialize.pm index e7b3ad3..b309eb7 100644 --- a/lib/MooseX/Storage/Meta/Attribute/DoNotSerialize.pm +++ b/lib/MooseX/Storage/Meta/Attribute/DoNotSerialize.pm @@ -2,8 +2,17 @@ package MooseX::Storage::Meta::Attribute::DoNotSerialize; use Moose; +our $VERSION = '0.01'; + extends 'Moose::Meta::Attribute'; +# register this alias ... +package Moose::Meta::Attribute::Custom::DoNotSerialize; + +our $VERSION = '0.01'; + +sub register_implementation { 'MooseX::Storage::Meta::Attribute::DoNotSerialize' } + 1; __END__ @@ -16,8 +25,30 @@ MooseX::Storage::Meta::Attribute::DoNotSerialize =head1 SYNOPSIS + package Point; + use Moose; + use MooseX::Storage; + + with Storage('format' => 'JSON', 'io' => 'File'); + + has 'x' => (is => 'rw', isa => 'Int'); + has 'y' => (is => 'rw', isa => 'Int'); + + has 'foo' => ( + metaclass => 'DoNotSerialize', + is => 'rw', + isa => 'CodeRef', + ); + + 1; + =head1 DESCRIPTION +Sometimes you don't want a particular attribute to be part of the +serialization, in this case, you want to make sure that attribute +uses this custom meta-attribute. See the SYNOPSIS for a nice example +that can be easily cargo-culted. + =head1 METHODS =head2 Introspection