From: Dave Rolsky Date: Sat, 11 Feb 2012 20:37:57 +0000 (-0600) Subject: Rename Extending::Recipe2 to Extending::Debugging_BaseClassRole X-Git-Tag: 2.0500~58 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=97da20ef3707567e7aef8fa52598b2934a832de9;p=gitmo%2FMoose.git Rename Extending::Recipe2 to Extending::Debugging_BaseClassRole --- diff --git a/lib/Moose/Cookbook.pod b/lib/Moose/Cookbook.pod index 6d400e9..74fd35f 100644 --- a/lib/Moose/Cookbook.pod +++ b/lib/Moose/Cookbook.pod @@ -176,7 +176,7 @@ There are quite a few ways to extend Moose. This recipe provides an overview of each method, and provides recommendations for when each is appropriate. -=item L - Providing a base object class role +=item L Many base object class extensions can be implemented as roles. This example shows how to provide a base object class debugging role that diff --git a/lib/Moose/Cookbook/Extending/Recipe2.pod b/lib/Moose/Cookbook/Extending/Debugging_BaseClassRole.pod similarity index 97% rename from lib/Moose/Cookbook/Extending/Recipe2.pod rename to lib/Moose/Cookbook/Extending/Debugging_BaseClassRole.pod index c1a8457..e74d1ef 100644 --- a/lib/Moose/Cookbook/Extending/Recipe2.pod +++ b/lib/Moose/Cookbook/Extending/Debugging_BaseClassRole.pod @@ -1,4 +1,4 @@ -package Moose::Cookbook::Extending::Recipe2; +package Moose::Cookbook::Extending::Debugging_BaseClassRole; # ABSTRACT: Providing a role for the base object class diff --git a/lib/Moose/Cookbook/Meta/Table_MetaclassTrait.pod b/lib/Moose/Cookbook/Meta/Table_MetaclassTrait.pod index 1618947..30a8c3b 100644 --- a/lib/Moose/Cookbook/Meta/Table_MetaclassTrait.pod +++ b/lib/Moose/Cookbook/Meta/Table_MetaclassTrait.pod @@ -39,8 +39,8 @@ the table might be an object describing the table. This really is as simple as the recipe L shows. The trick is getting your classes to use this metaclass, and providing some sort of sugar for declaring the table. This is covered in -L, which shows how to make a module like -C itself, with sugar like C. +L, which shows how to +make a module like C itself, with sugar like C. =head2 Using this Metaclass Trait in Practice