Revision history for Perl extension Class-MOP.
+ [ENHANCEMENTS]
+
+ * It's now possible to tell the metaclass pragma to not install a 'meta'
+ method into classes that use it. (doy)
+
[OTHER]
* Use get_or_add_package_symbol when we intend for it to autovivify, in
'method_metaclass' => 'MyMethodMetaClass',
);
+ # if we'd rather not install a 'meta' method, we can do this
+ use metaclass no_meta => 1;
+
=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<meta> method to your class as well.
+installs a C<meta> method to your class as well, if the
+C<no_meta> option is not specified.
=head1 AUTHORS