X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMoose%2FMeta%2FMixin%2FAttributeCore.pm;h=35d579f46876a15faeb86acf36a928042f2d069e;hb=f578a4a1b708111e2cd2c6228ae32345a42efbcf;hp=7630d1f8397554286c50c380ac723ffc50c23fae;hpb=c5fc2c2158738aaf493b6ae45e93596978c6eb1d;p=gitmo%2FMoose.git diff --git a/lib/Moose/Meta/Mixin/AttributeCore.pm b/lib/Moose/Meta/Mixin/AttributeCore.pm index 7630d1f..35d579f 100644 --- a/lib/Moose/Meta/Mixin/AttributeCore.pm +++ b/lib/Moose/Meta/Mixin/AttributeCore.pm @@ -3,9 +3,6 @@ package Moose::Meta::Mixin::AttributeCore; use strict; use warnings; -our $VERSION = '0.93'; -our $AUTHORITY = 'cpan:STEVAN'; - use base 'Class::MOP::Mixin::AttributeCore'; __PACKAGE__->meta->add_attribute( 'isa' => ( reader => '_isa_metadata' ) ); @@ -48,14 +45,12 @@ __PACKAGE__->meta->add_attribute( 1; +# ABSTRACT: Core attributes shared by attribute metaclasses + __END__ =pod -=head1 NAME - -Moose::Meta::Mixin::AttributeCore - Core attributes shared by attribute metaclasses - =head1 DESCRIPTION This class implements the core attributes (aka properties) shared by all Moose @@ -65,17 +60,4 @@ attributes. See the L documentation for API details. See L for details on reporting bugs. -=head1 AUTHORS - -Dave Rolsky Eautarch@urth.orgE - -=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