Add built local::lib
[catagits/Gitalist.git] / local-lib5 / lib / perl5 / i486-linux-gnu-thread-multi / MooseX / Role / WithOverloading / Meta / Role.pm
1 package MooseX::Role::WithOverloading::Meta::Role;
2 our $VERSION = '0.03';
3
4
5 # ABSTRACT: Roles which support overloading
6
7 use Moose::Role;
8 use aliased 'MooseX::Role::WithOverloading::Meta::Role::Composite', 'CompositionRole';
9 use namespace::autoclean;
10
11 has '+composition_class_roles' => (
12     default => [ CompositionRole ],
13 );
14
15 1;
16
17 __END__
18 =pod
19
20 =head1 NAME
21
22 MooseX::Role::WithOverloading::Meta::Role - Roles which support overloading
23
24 =head1 VERSION
25
26 version 0.03
27
28 =head1 AUTHORS
29
30 Florian Ragwitz <rafl@debian.org>
31 Tomas Doran <bobtfish@bobtfish.net>
32
33 =head1 COPYRIGHT AND LICENSE
34
35 This software is copyright (c) 2009 by Florian Ragwitz.
36
37 This is free software; you can redistribute it and/or modify it under
38 the same terms as the Perl 5 programming language system itself.
39
40 =cut
41