summary refs log tree commit diff
path: root/lib/Plack/Middleware/Debug/Dancer/Version.pm
blob: 23e6bbe4c92fb53919f37d112d44ce64a504b89d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package Plack::Middleware::Debug::Dancer::Version;

# ABSTRACT: Show Dancer's version

use strict;
use warnings;
use parent qw(Plack::Middleware::Debug::Base);

sub run {
    my ( $self, $env, $panel ) = @_;

    return sub {
        $panel->title('Dancer::Version');
        $panel->nav_title('Dancer::Version');
        $panel->nav_subtitle($Dancer::VERSION);
    };
}

1;

=head1 SYNOPSIS

To activate this panel:

    plack_middlewares:
      Debug:
        - panels
        -
          - Dancer::Version