From: Dave Rolsky Date: Sat, 1 Oct 2011 15:51:01 +0000 (-0500) Subject: Remove deleted recipes from Cookbook.pod X-Git-Tag: 2.0500~82 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=cbf699885253e076d24a3b1edb8bd8b98d154b5f;p=gitmo%2FMoose.git Remove deleted recipes from Cookbook.pod --- diff --git a/lib/Moose/Cookbook.pod b/lib/Moose/Cookbook.pod index 275cfc3..bd31a4b 100644 --- a/lib/Moose/Cookbook.pod +++ b/lib/Moose/Cookbook.pod @@ -119,13 +119,6 @@ you extend the object system provided by Moose. If you're wondering what all this "meta" stuff is, and why you should care about it, read this "recipe". -=item L - A meta-attribute, attributes with labels - -One way to extend Moose is to provide your own attribute -metaclasses. Attribute metaclasses let you extend attribute -declarations (with C) and behavior to provide additional -attribute functionality. - =item L - Labels implemented via attribute traits Extending Moose's attribute metaclass is a great way to add @@ -133,13 +126,6 @@ functionality. However, attributes can only have one metaclass. Applying roles to the attribute metaclass lets you provide composable attribute functionality. -=item L - Adding a "table" attribute to the metaclass - -If you want to store more information about your classes, you'll have -to extend C. Doing so is simple, but you'll -probably also want to provide some sugar, so see -L as well. - =item L - The "table" attribute implemented as a metaclass trait This recipe takes the class metaclass we saw in the previous recipe