bump version to 0.12
[gitmo/MooseX-ClassAttribute.git] / lib / MooseX / ClassAttribute / Trait / Application.pm
CommitLineData
63fcc508 1package MooseX::ClassAttribute::Trait::Application;
88b7f2c8 2
3use strict;
4use warnings;
5
eeee5ccb 6our $VERSION = '0.12';
f77be127 7
88b7f2c8 8use namespace::autoclean;
9use Moose::Role;
10
11after apply_attributes => sub {
4cbcd0f0 12 shift->_apply_class_attributes(@_);
88b7f2c8 13};
14
151;
04b89789 16
17__END__
18
19=pod
20
21=head1 NAME
22
23MooseX::ClassAttribute::Trait::Application - A trait that supports role application for roles with class attributes
24
25=head1 DESCRIPTION
26
27This trait is used to allow the application of roles containing class
28attributes.
29
30=head1 AUTHOR
31
32Dave Rolsky, C<< <autarch@urth.org> >>
33
34=head1 BUGS
35
36See L<MooseX::ClassAttribute> for details.
37
38=head1 COPYRIGHT & LICENSE
39
0cee5df4 40Copyright 2007-2010 Dave Rolsky, All Rights Reserved.
04b89789 41
42This program is free software; you can redistribute it and/or modify
43it under the same terms as Perl itself.
44
45=cut