the repository now lives at https://github.com/moose/MooseX-ClassAttributes
[gitmo/MooseX-ClassAttribute.git] / lib / MooseX / ClassAttribute / Trait / Application.pm
1 package MooseX::ClassAttribute::Trait::Application;
2
3 use strict;
4 use warnings;
5
6 use namespace::autoclean;
7 use Moose::Role;
8
9 after apply_attributes => sub {
10     shift->_apply_class_attributes(@_);
11 };
12
13 1;
14
15 # ABSTRACT: A trait that supports role application for roles with class attributes
16
17 __END__
18
19 =pod
20
21 =head1 DESCRIPTION
22
23 This trait is used to allow the application of roles containing class
24 attributes.
25
26 =head1 BUGS
27
28 See L<MooseX::ClassAttribute> for details.
29
30 =cut