X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMoose%2FMeta%2FRole%2FComposite.pm;h=e3a6d570b09c7c410c1a5702ba170d53ff2fba7c;hb=462bdc732ebe32abf5b9f3cd40033540a5f1388f;hp=484eae7c41d590d3ffa562eff46a5f41494a1d55;hpb=6b2f825e73f66af279fa9e0802bc06a0094e5e89;p=gitmo%2FMoose.git diff --git a/lib/Moose/Meta/Role/Composite.pm b/lib/Moose/Meta/Role/Composite.pm index 484eae7..e3a6d57 100644 --- a/lib/Moose/Meta/Role/Composite.pm +++ b/lib/Moose/Meta/Role/Composite.pm @@ -6,10 +6,6 @@ use metaclass; use Scalar::Util 'blessed'; -our $VERSION = '1.11'; -$VERSION = eval $VERSION; -our $AUTHORITY = 'cpan:STEVAN'; - use base 'Moose::Meta::Role'; # NOTE: @@ -57,7 +53,6 @@ sub new { roles => [ @composition_roles ], cache => 1, ); - $meta->add_method(meta => sub { $meta }); $class = $meta->name; } @@ -147,14 +142,12 @@ sub reinitialize { 1; +# ABSTRACT: An object to represent the set of roles + __END__ =pod -=head1 NAME - -Moose::Meta::Role::Composite - An object to represent the set of roles - =head1 DESCRIPTION A composite is a role that consists of a set of two or more roles. @@ -206,17 +199,4 @@ string with the package name, as there is no real package for composite roles. See L for details on reporting bugs. -=head1 AUTHOR - -Stevan Little Estevan@iinteractive.comE - -=head1 COPYRIGHT AND LICENSE - -Copyright 2006-2010 by Infinity Interactive, Inc. - -L - -This library is free software; you can redistribute it and/or modify -it under the same terms as Perl itself. - =cut