bump copyright to 2010
[gitmo/MooseX-ClassAttribute.git] / lib / MooseX / ClassAttribute / Trait / Mixin / HasClassAttributes.pm
index ab875c2..f516796 100644 (file)
@@ -3,6 +3,8 @@ package MooseX::ClassAttribute::Trait::Mixin::HasClassAttributes;
 use strict;
 use warnings;
 
+our $VERSION   = '0.11';
+
 use namespace::autoclean;
 use Moose::Role;
 
@@ -73,3 +75,36 @@ sub remove_class_attribute {
 }
 
 1;
+
+__END__
+
+=pod
+
+=head1 NAME
+
+MooseX::ClassAttribute::Trait::Mixin::HasClassAttributes - A mixin trait for things which have class attributes
+
+=head1 DESCRIPTION
+
+This trait is like L<Class::MOP::Mixin::HasAttributes>, except that it works
+with class attributes instead of object attributes.
+
+See L<MooseX::ClassAttribute::Trait::Class> and
+L<MooseX::ClassAttribute::Trait::Role> for API details.
+
+=head1 AUTHOR
+
+Dave Rolsky, C<< <autarch@urth.org> >>
+
+=head1 BUGS
+
+See L<MooseX::ClassAttribute> for details.
+
+=head1 COPYRIGHT & LICENSE
+
+Copyright 2007-2010 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