Rename Extending::Recipe4 to Extending::Mooseish_MooseSugar
Dave Rolsky [Sat, 11 Feb 2012 20:40:02 +0000 (14:40 -0600)]
lib/Moose/Cookbook.pod
lib/Moose/Cookbook/Extending/Mooseish_MooseSugar.pod [moved from lib/Moose/Cookbook/Extending/Recipe4.pod with 97% similarity]
lib/Moose/Manual/FAQ.pod

index 0209af6..e13ec0e 100644 (file)
@@ -183,7 +183,7 @@ example shows how to provide a base object class debugging role that
 is applied to any class that uses a notional C<MooseX::Debugging>
 module.
 
-=item L<Moose::Cookbook::Extending::Recipe4> - Acting like Moose.pm and providing sugar Moose-style
+=item L<Moose::Cookbook::Extending::Mooseish_MooseSugar>
 
 This recipe shows how to provide a replacement for C<Moose.pm>. You
 may want to do this as part of the API for a C<MooseX> module,
@@ -1,4 +1,4 @@
-package Moose::Cookbook::Extending::Recipe4;
+package Moose::Cookbook::Extending::Mooseish_MooseSugar;
 
 # ABSTRACT: Acting like Moose.pm and providing sugar Moose-style
 
index 8fb8570..e4294d8 100644 (file)
@@ -129,7 +129,7 @@ NOTE: This B<cannot> be set globally in Moose, as that would break
 other classes which are built with Moose. You can still save on typing
 by defining a new C<MyApp::Moose> that exports Moose's sugar and then
 turns on L<MooseX::FollowPBP>. See
-L<Moose::Cookbook::Extending::Recipe4>.
+L<Moose::Cookbook::Extending::Mooseish_MooseSugar>.
 
 =head3 How can I inflate/deflate values in accessors?