File: App.pm

package info (click to toggle)
libbadger-perl 0.16-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,400 kB
  • sloc: perl: 11,004; makefile: 9
file content (45 lines) | stat: -rw-r--r-- 848 bytes parent folder | download
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
package Badger::Reporter::App;

use Badger::Class
    version   => 2.71,
    debug     => 0,
    base      => 'Badger::Reporter';

our $EVENTS = [
    {
        name    => 'credits',
        colour  => 'yellow',
        message => "<1> v<2><3| by ?><4|, ?>",
    },
    {
        name    => 'section',
        colour  => 'yellow',
        message => "\n%s:",
        summary => 0,
    },
    {
        name    => 'about',
        colour  => 'cyan',
        message => '  %s',
    },
    {
        name    => 'option',
        colour  => 'cyan',
        message => '  --%-20s %s',
    },
    {
        name    => 'info',
        colour  => 'cyan',
        message => '%s',
        summary => '',
    },
    {
        name    => 'detail',
        colour  => 'cyan',
        message => '%s',
        summary => '',
        verbose => 1,
    },
];

1;