X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMoose%2FMeta%2FInstance.pm;h=6cb50dece70b939e42c63a8e14955221061880ad;hb=297899d15cdf00745649d439545a1e7daeac28b8;hp=a32b91a5b4f8d8a7b5d789d9300f2d4f06f7a5a3;hpb=3eb89f709f04907580b508f821d6be2316fcb65f;p=gitmo%2FMoose.git diff --git a/lib/Moose/Meta/Instance.pm b/lib/Moose/Meta/Instance.pm index a32b91a..6cb50de 100644 --- a/lib/Moose/Meta/Instance.pm +++ b/lib/Moose/Meta/Instance.pm @@ -4,22 +4,20 @@ package Moose::Meta::Instance; use strict; use warnings; -our $VERSION = '1.01'; -$VERSION = eval $VERSION; -our $AUTHORITY = 'cpan:STEVAN'; +use Class::MOP::MiniTrait; use base "Class::MOP::Instance"; +Class::MOP::MiniTrait::apply(__PACKAGE__, 'Moose::Meta::Object::Trait'); + 1; +# ABSTRACT: The Moose Instance metaclass + __END__ =pod -=head1 NAME - -Moose::Meta::Instance - The Moose Instance metaclass - =head1 SYNOPSIS # nothing to see here @@ -45,19 +43,4 @@ C is a subclass of L. See L for details on reporting bugs. -=head1 AUTHOR - -Stevan Little Estevan@iinteractive.comE - -Yuval Kogman Enothingmuch@woobling.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