• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

lib/H03-May-2022-413139

t/H02-Aug-2010-7751

xt/H02-Aug-2010-2824

ChangesH A D02-Aug-2010284 117

LICENSEH A D02-Aug-201017.8 KiB378292

MANIFESTH A D02-Aug-2010479 2423

META.jsonH A D02-Aug-20106.2 KiB218216

META.ymlH A D02-Aug-20104 KiB159158

Makefile.PLH A D02-Aug-20101.2 KiB5944

READMEH A D02-Aug-20101 KiB4231

dist.iniH A D02-Aug-2010557 2924

README

1NAME
2    Dancer::Debug - Extend Plack::Middleware::Debug with some specific
3    panels for Dancer
4
5VERSION
6    version 0.03
7
8SYNOPSIS
9    You can activate the panels in your development configuration file:
10
11        plack_middlewares:
12          Debug:
13            - panels
14            -
15              - Parameters
16              - Dancer::Version
17              - Dancer::Settings
18              - Dancer::Logger
19              - Dancer::Routes
20
21    or in your app.psgi:
22
23        $handler = builder {
24            enable "Debug",
25                panels => [qw/Dancer::Settings Dancer::Logger Parameters Dancer::Version/];
26            $handler;
27        };
28
29DESCRIPTION
30    Dancer::Debug extends Plack::Middleware::Debug with some specific panels
31    for Dancer.
32
33AUTHOR
34    franck cuny <franck@lumberjaph.net>
35
36COPYRIGHT AND LICENSE
37    This software is copyright (c) 2010 by franck cuny.
38
39    This is free software; you can redistribute it and/or modify it under
40    the same terms as the Perl 5 programming language system itself.
41
42