X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FHelper.pm;h=0e04f88bebd72b7ec75d8aa8148bc2644763a34f;hb=e112461ad1af391bfdc158350bba343a2624c892;hp=74fe38c0d61c2297f61ca3f473f83c3aa12022dd;hpb=3736410fe6b86ea7cda39b23625a47a8a946af0e;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Helper.pm b/lib/Catalyst/Helper.pm index 74fe38c..0e04f88 100644 --- a/lib/Catalyst/Helper.pm +++ b/lib/Catalyst/Helper.pm @@ -501,7 +501,7 @@ So when you call C, create would try to execute Catalyst::Helper::View::TT->mk_compclass and Catalyst::Helper::View::TT->mk_comptest. -See L and L for +See L and L for examples. All helper classes should be under one of the following namespaces. @@ -544,8 +544,10 @@ use warnings; # Set flags and add plugins for the application # # -Debug: activates the debug mode for very useful log messages +# ConfigLoader: will load the configuration from a YAML file in the +# application's home directory # Static::Simple: will serve static files from the application's root -# directory +# directory # use Catalyst qw/-Debug ConfigLoader Static::Simple/; @@ -1029,8 +1031,8 @@ pod2usage(1) unless $helper->mk_component( '[% name %]', @ARGV ); [% appprefix %]_create.pl view MyView TT [% appprefix %]_create.pl view TT TT [% appprefix %]_create.pl model My::Model - [% appprefix %]_create.pl model SomeDB CDBI dbi:SQLite:/tmp/my.db - [% appprefix %]_create.pl model AnotherDB CDBI dbi:Pg:dbname=foo root 4321 + [% appprefix %]_create.pl model SomeDB DBIC::SchemaLoader dbi:SQLite:/tmp/my.db + [% appprefix %]_create.pl model AnotherDB DBIC::SchemaLoader dbi:Pg:dbname=foo root 4321 See also: perldoc Catalyst::Manual @@ -1109,8 +1111,7 @@ it under the same terms as Perl itself. __comptest__ use strict; use warnings; -[% IF long_type == 'Controller' %][% IF mech %]our $test_count; -use Test::More; +[% IF long_type == 'Controller' %][% IF mech %]use Test::More; eval "use Test::WWW::Mechanize::Catalyst '[% app %]'"; plan $@