no more regex forwards
[catagits/Catalyst-Runtime.git] / lib / Catalyst.pm
index bc1d5b6..cdd9c53 100644 (file)
@@ -7,7 +7,7 @@ use Catalyst::Log;
 
 __PACKAGE__->mk_classdata($_) for qw/_config log/;
 
-our $VERSION = '4.13';
+our $VERSION = '4.23';
 our @ISA;
 
 =head1 NAME
@@ -17,19 +17,19 @@ Catalyst - The Elegant MVC Web Application Framework
 =head1 SYNOPSIS
 
     # use the helper to start a new application
-    perl /path/to/catalyst MyApp
+    catalyst.pl MyApp
     cd MyApp
 
     # add models, views, controllers
-    perl bin/create model Something
-    perl bin/create view Stuff
-    perl bin/create controller Yada
+    script/create.pl model Something
+    script/create.pl view Stuff
+    script/create.pl controller Yada
 
     # built in testserver
-    perl bin/server
+    script/server.pl
 
     # command line interface
-    perl bin/test /yada
+    script/test.pl /yada
 
 
     See also L<Catalyst::Manual::Intro>