Rename Extending::Recipe1 to Extending::ExtensionOverview
Dave Rolsky [Sat, 11 Feb 2012 20:36:39 +0000 (14:36 -0600)]
lib/Moose.pm
lib/Moose/Cookbook.pod
lib/Moose/Cookbook/Extending/ExtensionOverview.pod [moved from lib/Moose/Cookbook/Extending/Recipe1.pod with 99% similarity]
lib/Moose/Cookbook/Extending/Recipe4.pod

index e435af9..568bdd7 100644 (file)
@@ -870,7 +870,7 @@ to work. Here is an example:
 
 To learn more about extending Moose, we recommend checking out the
 "Extending" recipes in the L<Moose::Cookbook>, starting with
-L<Moose::Cookbook::Extending::Recipe1>, which provides an overview of
+L<Moose::Cookbook::Extending::ExtensionOverview>, which provides an overview of
 all the different ways you might extend Moose. L<Moose::Exporter> and
 L<Moose::Util::MetaRole> are the modules which provide the majority of the
 extension functionality, so reading their documentation should also be helpful.
index d834eb2..6d400e9 100644 (file)
@@ -170,7 +170,7 @@ if you plan to write your own C<MooseX> module.
 
 =over 4
 
-=item L<Moose::Cookbook::Extending::Recipe1> - Moose extension overview
+=item L<Moose::Cookbook::Extending::ExtensionOverview>
 
 There are quite a few ways to extend Moose. This recipe provides an
 overview of each method, and provides recommendations for when each is
@@ -1,4 +1,4 @@
-package Moose::Cookbook::Extending::Recipe1;
+package Moose::Cookbook::Extending::ExtensionOverview;
 
 # ABSTRACT: Moose extension overview
 
index 0509279..1e351c4 100644 (file)
@@ -36,9 +36,10 @@ __END__
 =head1 DESCRIPTION
 
 This recipe expands on the use of L<Moose::Exporter> we saw in
-L<Moose::Cookbook::Extending::Recipe1> and the class metaclass trait we saw in
-L<Moose::Cookbook::Meta::Table_MetaclassTrait>. In this example we provide our
-own metaclass trait, and we also export a C<has_table> sugar function.
+L<Moose::Cookbook::Extending::ExtensionOverview> and the class metaclass trait
+we saw in L<Moose::Cookbook::Meta::Table_MetaclassTrait>. In this example we
+provide our own metaclass trait, and we also export a C<has_table> sugar
+function.
 
 The C<with_meta> parameter specifies a list of functions that should
 be wrapped before exporting. The wrapper simply ensures that the