adding metaclass alias
[gitmo/MooseX-Storage.git] / lib / MooseX / Storage / Meta / Attribute / DoNotSerialize.pm
1
2 package MooseX::Storage::Meta::Attribute::DoNotSerialize;
3 use Moose;
4
5 extends 'Moose::Meta::Attribute';
6
7 # register this alias ...
8 package Moose::Meta::Attribute::Custom::DoNotSerialize;
9 sub register_implementation { 'MooseX::Storage::Meta::Attribute::DoNotSerialize' }
10
11 1;
12
13 __END__
14
15 =pod
16
17 =head1 NAME
18
19 MooseX::Storage::Meta::Attribute::DoNotSerialize
20
21 =head1 SYNOPSIS
22
23 =head1 DESCRIPTION
24
25 =head1 METHODS
26
27 =head2 Introspection
28
29 =over 4
30
31 =item B<meta>
32
33 =back
34
35 =head1 BUGS
36
37 All complex software has bugs lurking in it, and this module is no 
38 exception. If you find a bug please either email me, or add the bug
39 to cpan-RT.
40
41 =head1 AUTHOR
42
43 Chris Prather E<lt>chris.prather@iinteractive.comE<gt>
44
45 Stevan Little E<lt>stevan.little@iinteractive.comE<gt>
46
47 =head1 COPYRIGHT AND LICENSE
48
49 Copyright 2007 by Infinity Interactive, Inc.
50
51 L<http://www.iinteractive.com>
52
53 This library is free software; you can redistribute it and/or modify
54 it under the same terms as Perl itself.
55
56 =cut