X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMoose%2FCookbook%2FExtending%2FRecipe3.pod;h=ea75547c5d958a72ec1eb891c568140f4082c809;hb=1c748165a457d3e8768ffc48e5e3bcf5bb73a41c;hp=1028a58111dd14265d3428ecf80a36d01f3f5e54;hpb=0adca353bd88302289a574fc9a22c91f1968a15f;p=gitmo%2FMoose.git diff --git a/lib/Moose/Cookbook/Extending/Recipe3.pod b/lib/Moose/Cookbook/Extending/Recipe3.pod index 1028a58..ea75547 100644 --- a/lib/Moose/Cookbook/Extending/Recipe3.pod +++ b/lib/Moose/Cookbook/Extending/Recipe3.pod @@ -1,3 +1,9 @@ +package Moose::Cookbook::Extending::Recipe3; + +# ABSTRACT: Providing an alternate base object class + +__END__ + =pod @@ -9,10 +15,6 @@ use Test::Requires { =end testing-SETUP -=head1 NAME - -Moose::Cookbook::Extending::Recipe3 - Providing an alternate base object class - =head1 SYNOPSIS package MyApp::Base; @@ -38,7 +40,7 @@ Moose::Cookbook::Extending::Recipe3 - Providing an alternate base object class =head1 DESCRIPTION A common extension is to provide an alternate base class. One way to -do that is to make a C and add C and add C> to every class in your application. That's pretty tedious. Instead, you can create a Moose-alike module that sets the base object class to C for you. @@ -82,19 +84,6 @@ This is an awful lot of magic for a simple base class. You will often want to combine a metaclass trait with a base class extension, and that's when this technique is useful. -=head1 AUTHOR - -Dave Rolsky Eautarch@urth.orgE - -=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. - =begin testing {