X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2Fmetaclass.pm;h=a66b3231df4808bec818b19cb3ca2dcb21e5f8e1;hb=9363ea893ea47db99690a480cb163be298e3f1d2;hp=b09417e90d2985c5a5a96914d45741035787a3fb;hpb=96ceced87583646c1396bba4fdfa92d0b6c37058;p=gitmo%2FClass-MOP.git diff --git a/lib/metaclass.pm b/lib/metaclass.pm index b09417e..a66b323 100644 --- a/lib/metaclass.pm +++ b/lib/metaclass.pm @@ -7,18 +7,24 @@ use warnings; use Carp 'confess'; use Scalar::Util 'blessed'; -our $VERSION = '0.02'; +our $VERSION = '0.03'; +our $AUTHORITY = 'cpan:STEVAN'; use Class::MOP; sub import { shift; - my $metaclass = shift || 'Class::MOP::Class'; - my %options = @_; - my $package = caller(); - - ($metaclass->isa('Class::MOP::Class')) - || confess 'The metaclass must be derived from Class::MOP::Class'; + my $metaclass; + if (!defined($_[0]) || $_[0] =~ /^\:(attribute|method|instance)_metaclass/) { + $metaclass = 'Class::MOP::Class'; + } + else { + $metaclass = shift; + ($metaclass->isa('Class::MOP::Class')) + || confess "The metaclass ($metaclass) must be derived from Class::MOP::Class"; + } + my %options = @_; + my $package = caller(); # create a meta object so we can install &meta my $meta = $metaclass->initialize($package => %options); @@ -60,16 +66,26 @@ metaclass - a pragma for installing and using Class::MOP metaclasses ':method_metaclass' => 'MyMethodMetaClass', ); + # ... or just specify custom attribute + # and method classes, and Class::MOP::Class + # is the assumed metaclass + use metaclass ( + ':attribute_metaclass' => 'MyAttributeMetaClass', + ':method_metaclass' => 'MyMethodMetaClass', + ); + =head1 DESCRIPTION This is a pragma to make it easier to use a specific metaclass and a set of custom attribute and method metaclasses. It also installs a C method to your class as well. -=head1 AUTHOR +=head1 AUTHORS Stevan Little Estevan@iinteractive.comE +Yuval Kogman Enothingmuch@woobling.comE + =head1 COPYRIGHT AND LICENSE Copyright 2006 by Infinity Interactive, Inc. @@ -79,4 +95,4 @@ L This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. -=cut \ No newline at end of file +=cut