NAME
   Dancer::Debug - Extend Plack::Middleware::Debug with some specific
   panels for Dancer

VERSION
   version 0.03

SYNOPSIS
   You can activate the panels in your development configuration file:

       plack_middlewares:
         Debug:
           - panels
           -
             - Parameters
             - Dancer::Version
             - Dancer::Settings
             - Dancer::Logger
             - Dancer::Routes

   or in your app.psgi:

       $handler = builder {
           enable "Debug",
               panels => [qw/Dancer::Settings Dancer::Logger Parameters Dancer::Version/];
           $handler;
       };

DESCRIPTION
   Dancer::Debug extends Plack::Middleware::Debug with some specific panels
   for Dancer.

AUTHOR
   franck cuny <[email protected]>

COPYRIGHT AND LICENSE
   This software is copyright (c) 2010 by franck cuny.

   This is free software; you can redistribute it and/or modify it under
   the same terms as the Perl 5 programming language system itself.