X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=lib%2FCatalyst.pm;h=b43ffcc89a825be4f26e4f6180d443d1ae269fe3;hp=d6f8e073ab583c7117c1b8903595608c33bdddd2;hb=50f6a990e35f22a9037b1caf72bb8271bb556e78;hpb=38d13baa16640c307601994cd40707d0e8e2b66c diff --git a/lib/Catalyst.pm b/lib/Catalyst.pm index d6f8e07..b43ffcc 100644 --- a/lib/Catalyst.pm +++ b/lib/Catalyst.pm @@ -61,7 +61,7 @@ __PACKAGE__->engine_class('Catalyst::Engine::CGI'); __PACKAGE__->request_class('Catalyst::Request'); __PACKAGE__->response_class('Catalyst::Response'); -our $VERSION = '5.678'; +our $VERSION = '5.6902'; sub import { my ( $class, @arguments ) = @_; @@ -1082,7 +1082,10 @@ that will be dumped on the error page in debug mode. sub dump_these { my $c = shift; - [ Request => $c->req ], [ Response => $c->res ], [ Stash => $c->stash ],; + [ Request => $c->req ], + [ Response => $c->res ], + [ Stash => $c->stash ], + [ Config => $c->config ]; } =head2 $c->engine_class