From: Dave Rolsky Date: Thu, 30 Apr 2009 03:29:08 +0000 (-0500) Subject: Mention MX::NonMoose X-Git-Tag: 0.77~15 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=3e1dc2ffbb0b6404caeac86e38d9270a4a3d37f1;p=gitmo%2FMoose.git Mention MX::NonMoose --- diff --git a/lib/Moose/Cookbook/Basics/Recipe12.pod b/lib/Moose/Cookbook/Basics/Recipe12.pod index 3ad3282..1a44f67 100644 --- a/lib/Moose/Cookbook/Basics/Recipe12.pod +++ b/lib/Moose/Cookbook/Basics/Recipe12.pod @@ -58,11 +58,14 @@ Moose::Cookbook::Basics::Recipe12 - Extending a non-Moose base class =head1 DESCRIPTION -This recipe demonstrates how to use Moose to subclass a parent which -is not Moose based. This recipe only works if the parent class uses a -blessed hash reference for object instances. If your parent is doing +This recipe demonstrates how to use Moose to subclass a parent which +is not Moose based. This recipe only works if the parent class uses a +blessed hash reference for object instances. If your parent is doing something funkier, you should check out L. +You might also want to check out L, which does all +the grunt work for you. + There are a couple pieces worth noting: use Moose;