package MooseX::ClassAttribute::Meta::Role::Attribute; use strict; use warnings; our $VERSION = '0.29'; use namespace::autoclean; use Moose; use List::Util 1.45 'uniq'; extends 'Moose::Meta::Role::Attribute'; sub new { my ( $class, $name, %options ) = @_; $options{traits} = [ uniq( @{ $options{traits} || [] } ), 'MooseX::ClassAttribute::Trait::Attribute' ]; return $class->SUPER::new( $name, %options ); } 1; # ABSTRACT: An attribute metaclass for class attributes in roles __END__ =pod =encoding UTF-8 =head1 NAME MooseX::ClassAttribute::Meta::Role::Attribute - An attribute metaclass for class attributes in roles =head1 VERSION version 0.29 =head1 DESCRIPTION This class overrides L to support class attribute declaration in roles. =head1 BUGS See L for details. Bugs may be submitted through L (or L). I am also usually active on IRC as 'drolsky' on C. =head1 AUTHOR Dave Rolsky =head1 COPYRIGHT AND LICENCE This software is Copyright (c) 2016 by Dave Rolsky. This is free software, licensed under: The Artistic License 2.0 (GPL Compatible) =cut