Use private _class_attribute_map method
[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 {
10 shift->apply_class_attributes(@_);
11};
12
131;
04b89789 14
15__END__
16
17=pod
18
19=head1 NAME
20
21MooseX::ClassAttribute::Trait::Application - A trait that supports role application for roles with class attributes
22
23=head1 DESCRIPTION
24
25This trait is used to allow the application of roles containing class
26attributes.
27
28=head1 AUTHOR
29
30Dave Rolsky, C<< <autarch@urth.org> >>
31
32=head1 BUGS
33
34See L<MooseX::ClassAttribute> for details.
35
36=head1 COPYRIGHT & LICENSE
37
38Copyright 2007-2008 Dave Rolsky, All Rights Reserved.
39
40This program is free software; you can redistribute it and/or modify
41it under the same terms as Perl itself.
42
43=cut