X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMooseX%2FClassAttribute%2FTrait%2FApplication.pm;h=c5b1dd790bce646d2a2f62a448ac8b0718534f75;hb=f77be1270c08f6fce772bb7c26f3a8eaf37c5b9a;hp=3ccf0f7fd1877ba54a7624d35a90481430b29269;hpb=63fcc5089af76b1738850b39823dab675626ebfa;p=gitmo%2FMooseX-ClassAttribute.git diff --git a/lib/MooseX/ClassAttribute/Trait/Application.pm b/lib/MooseX/ClassAttribute/Trait/Application.pm index 3ccf0f7..c5b1dd7 100644 --- a/lib/MooseX/ClassAttribute/Trait/Application.pm +++ b/lib/MooseX/ClassAttribute/Trait/Application.pm @@ -3,11 +3,43 @@ package MooseX::ClassAttribute::Trait::Application; use strict; use warnings; +our $VERSION = '0.10'; + use namespace::autoclean; use Moose::Role; after apply_attributes => sub { - shift->apply_class_attributes(@_); + shift->_apply_class_attributes(@_); }; 1; + +__END__ + +=pod + +=head1 NAME + +MooseX::ClassAttribute::Trait::Application - A trait that supports role application for roles with class attributes + +=head1 DESCRIPTION + +This trait is used to allow the application of roles containing class +attributes. + +=head1 AUTHOR + +Dave Rolsky, C<< >> + +=head1 BUGS + +See L for details. + +=head1 COPYRIGHT & LICENSE + +Copyright 2007-2008 Dave Rolsky, All Rights Reserved. + +This program is free software; you can redistribute it and/or modify +it under the same terms as Perl itself. + +=cut