Fixed summary and changed a few links.
[catagits/Gitalist.git] / lib / Gitalist / Serializeable.pm
CommitLineData
3dd2722f 1package Gitalist::Serializeable;
2use Moose::Role;
3use namespace::autoclean;
4use MooseX::Storage;
5
6with Storage( traits => [qw|OnlyWhenBuilt|] );
7
81;
9
10=head1 NAME
11
12Gitalist::Serializeable
13
14=head1 SYNOPSIS
15
16 class Gitalist::Git::Foo with Gitalist::Serializeable {
17 ...
18 }
19
20=head1 DESCRIPTION
21
22Role which applies a customised L<MooseX::Storage>.
23
24=head1 AUTHORS
25
26See L<Gitalist> for authors.
27
28=head1 LICENSE
29
30See L<Gitalist> for the license.
31
32=cut