X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMoose%2FMeta%2FInstance.pm;h=6cb50dece70b939e42c63a8e14955221061880ad;hb=5d9d20f3e1445861792fbff00f8e37396ce7c8ed;hp=62ffb1fb64da800adee97b6ae83b7523e9df19b7;hpb=0aca6c894339607ab07bc40a508ab47129f0f1ec;p=gitmo%2FMoose.git diff --git a/lib/Moose/Meta/Instance.pm b/lib/Moose/Meta/Instance.pm index 62ffb1f..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 = '0.74'; -$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 @@ -43,23 +41,6 @@ C is a subclass of L. =head1 BUGS -All complex software has bugs lurking in it, and this module is no -exception. If you find a bug please either email me, or add the bug -to cpan-RT. - -=head1 AUTHOR - -Stevan Little Estevan@iinteractive.comE - -Yuval Kogman Enothingmuch@woobling.comE - -=head1 COPYRIGHT AND LICENSE - -Copyright 2006-2009 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. +See L for details on reporting bugs. =cut