Fix some POD errors.
[gitmo/Moose.git] / lib / Moose / Cookbook.pod
1
2 =pod
3
4 =head1 NAME
5
6 Moose::Cookbook - How to cook a Moose
7
8 =head1 DESCRIPTION
9
10 The Moose cookbook is a series of recipes taken from the Moose 
11 test suite. Each recipe presents some code, which demonstrates 
12 some of the features of Moose, and then proceeds to explain the 
13 details of the code. 
14
15 We also provide a L<Moose::Cookbook::FAQ> and a L<Moose::Cookbook::WTF>
16 for common questions and problems people have with Moose. 
17
18 =head1 RECIPES
19
20 =head2 Basic Moose
21
22 These recipes will give you a good idea of what Moose is capable,
23 starting with simple attribute declaration, and moving on to more
24 powerful features like laziness, types, type coercion, method
25 modifiers, and more.
26
27 =over 4
28
29 =item L<Moose::Cookbook::Basics::Recipe1> - The (always classic) B<Point> example
30
31 A simple Moose-based class. Demonstrated Moose attributes and subclassing.
32
33 =item L<Moose::Cookbook::Basics::Recipe2> - A simple B<BankAccount> example
34
35 A slightly more complex Moose class. Demonstrates using a method
36 modifier in a subclass.
37
38 =item L<Moose::Cookbook::Basics::Recipe3> - A lazy B<BinaryTree> example
39
40 Demonstrates several attribute features, including types, weak
41 references, predicates ("does this object have a foo?"), defaults, and
42 lazy attribute uction.
43
44 =item L<Moose::Cookbook::Basics::Recipe4> - Subtypes, and modeling a simple B<Company> class hierarchy
45
46 Introduces the creation and use of custom types, a C<BUILD> method,
47 and the use of C<override> in a subclass.
48
49 =item L<Moose::Cookbook::Basics::Recipe5> - More subtypes, coercion in a B<Request> class
50
51 More type examples, including the use of type coercions.
52
53 =item L<Moose::Cookbook::Basics::Recipe6> - The augment/inner example
54
55 Demonstrates the use of C<augment> method modifiers, a way of turning
56 the usual method overriding style "inside-out".
57
58 =item L<Moose::Cookbook::Basics::Recipe7> - Making Moose fast with immutable
59
60 Making a class immutable greatly increases the speed of accessors and
61 object construction.
62
63 =item L<Moose::Cookbook::Basics::Recipe8> - Managing complex relations with trigger (TODO)
64
65 I<abstract goes here>
66
67 Work off of this http://code2.0beta.co.uk/moose/svn/Moose/trunk/t/200_examples/007_Child_Parent_attr_inherit.t
68
69 =item L<Moose::Cookbook::Basics::Recipe9> - Builder methods and lazy_build
70
71 The builder feature provides an inheritable and role-composable way to
72 provide a default attribute value.
73
74 =item L<Moose::Cookbook::Basics::Recipe10> - Operator overloading, subtypes, and coercion
75
76 Demonstrates using operator overloading, coercion, and subtypes to
77 model how eye color is determined during reproduction.
78
79 =back
80
81 =head2 Moose Roles
82
83 These recipes will show you how to use Moose roles.
84
85 =over 4
86
87 =item L<Moose::Cookbook::Role::Recipe1> - The Moose::Role example
88
89 Demonstrates roles, which are also sometimes known as traits or
90 mix-ins. Roles provide a method of code re-use which is orthogonal to
91 subclassing.
92
93 =item L<Moose::Cookbook::Role::Recipe2> - Advanced Role Composition - method exclusion and aliasing
94
95 Sometimes you just want to include part of a role in your
96 class. Sometimes you want the whole role but one if its methods
97 conflicts with one in your class. With method exclusion and aliasing,
98 you can work around these problems.
99
100 =item L<Moose::Cookbook::Role::Recipe3> - Runtime Role Composition (TODO)
101
102 I<abstract goes here>
103
104 =back
105
106 =head2 Meta Moose
107
108 These recipes show you how to write your own meta classes, which lets
109 you extend the object system provide by Moose.
110
111 =over 4
112
113 =item L<Moose::Cookbook::Meta::Recipe1> - Welcome to the meta-world (Why Go Meta?)
114
115 If you're wondering what all this "meta" stuff is, and why you should
116 care about it, read this "recipe".
117
118 =item L<Moose::Cookbook::Meta::Recipe2> - A meta-attribute, attributes with labels
119
120 One way to extend Moose is to provide your own attribute
121 metaclasses. Attribute metaclasses let you extend attribute
122 declarations (with C<has>) and behavior to provide additional
123 attribute functionality.
124
125 =item L<Moose::Cookbook::Meta::Recipe3> - Labels implemented via attribute traits
126
127 Extending Moose's attribute metaclass is a great way to add
128 functionality. However, attributes can only have one metaclass.
129 Applying roles to the attribute metaclass lets you provide
130 composable attribute functionality.
131
132 =item L<Moose::Cookbook::Meta::Recipe4> - Adding a "table" attribute to the metaclass
133
134 If you want to store more information about your classes, you'll have
135 to extend C<Moose::Meta::Class>. Doing so is simple, but you'll
136 probably also want to provide some sugar, so see
137 L<Moose::Cookbook::Meta::Recipe6> as well.
138
139 =item L<Moose::Cookbook::Meta::Recipe5> - The "table" attribute implemented via a metaclass trait
140
141 I<abstract goes here>
142
143 =item L<Moose::Cookbook::Meta::Recipe6> - I<meta-instance> (TODO)
144
145 I<abstract goes here>
146
147 =back
148
149 =head2 Extending Moose
150
151 These recipes cover some more ways to extend Moose, and will be useful
152 if you plan to write your own C<MooseX> module.
153
154 =over 4
155
156 =item L<Moose::Cookbook::Extending::Recipe1> - Providing an alternate base object class
157
158 You may find that you want to provide an alternate base object class
159 along with a meta extension, or maybe you just want to add some
160 functionality to all your classes without typing C<extends
161 'MyApp::Base'> over and over.
162
163 =item L<Moose::Cookbook::Extending::Recipe2> - Acting like Moose.pm and providing sugar Moose-style
164
165 You'll often find that you want to provide a replacement for
166 C<Moose.pm> as part of a meta extension. This is especially true if
167 you want to write default to your own metaclass or base object class.
168
169 =back
170
171 =head1 SNACKS
172
173 =over 4
174
175 =item L<Moose::Cookbook::Snack::Keywords>
176
177 =item L<Moose::Cookbook::Snack::Types>
178
179 =back
180
181 =head1 SEE ALSO
182
183 =over 4
184
185 =item L<http://www.gsph.com/index.php?Lang=En&ID=291>
186
187 =back
188
189 =head1 AUTHOR
190
191 Stevan Little E<lt>stevan@iinteractive.comE<gt>
192
193 =head1 COPYRIGHT AND LICENSE
194
195 Copyright 2006-2008 by Infinity Interactive, Inc.
196
197 L<http://www.iinteractive.com>
198
199 This library is free software; you can redistribute it and/or modify
200 it under the same terms as Perl itself.
201
202 =cut