X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=lib%2FCatalyst.pm;h=5349cb278ab9d299b7a2881bc4c14053daec7aa1;hp=6f0311f26f9e1543b85366b6053f1867e1ff1e13;hb=aff93052863e06b3f0b8b8e76e313156582fd78e;hpb=5ddd05a02d9532f0beefedd532e604c6f3bae4c8 diff --git a/lib/Catalyst.pm b/lib/Catalyst.pm index 6f0311f..5349cb2 100644 --- a/lib/Catalyst.pm +++ b/lib/Catalyst.pm @@ -7,7 +7,7 @@ use Catalyst::Log; __PACKAGE__->mk_classdata($_) for qw/_config log/; -our $VERSION = '4.12'; +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 @@ -176,6 +176,17 @@ sub import { $caller->log->debug(qq/Loaded engine "$engine"/) if $caller->debug; } +=head1 SUPPORT + +IRC: + + Join #catalyst on irc.perl.org. + +Mailing-Lists: + + http://lists.rawmode.org/mailman/listinfo/catalyst + http://lists.rawmode.org/mailman/listinfo/catalyst-dev + =head1 SEE ALSO L, L, L,