X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FUpgrading.pod;h=0e4b76f2568599fb8112894cbc9a30fa65472f42;hb=3db3a59fefa0cd2859282f7a3e0429a7152637c5;hp=b48c2932d9b1294e2aace39e42bdc25920abf602;hpb=eaae9a9246b1c213dfd1fdff44f76c5c77562ab3;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Upgrading.pod b/lib/Catalyst/Upgrading.pod index b48c293..0e4b76f 100644 --- a/lib/Catalyst/Upgrading.pod +++ b/lib/Catalyst/Upgrading.pod @@ -126,7 +126,11 @@ etc) then the correct technique is: package MyApp; use Moose; + use Catalyst; + extends 'Catalyst'; + + __PACKAGE__->config( name => 'MyApp' ); __PACKAGE__->setup(qw/ ConfigLoader /);