Make the intro use Moose instead of class.
rafl [Mon, 18 Aug 2008 13:21:50 +0000 (13:21 +0000)]
lib/Reaction/Manual/Intro.pod

index 9ea0974..2e60672 100644 (file)
@@ -110,12 +110,9 @@ Then you create a MyApp::Model that uses this InferfaceModel:
 
     package Myapp::Model::IM;
     
-    
     use Reaction::Class;
     
-    class IM is 'Catalyst::Model::Reaction::InterfaceModel::DBIC', which {
-
-    };
+    extends 'Catalyst::Model::Reaction::InterfaceModel::DBIC';
 
     1;
     
@@ -167,9 +164,7 @@ One of the views in your application should look something like this:
 
     use Reaction::Class;
 
-    class TT is 'Reaction::UI::View::TT', which {
-
-    };
+    extends 'Reaction::UI::View::TT';
 
     1;