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