Subject: | Daemonize + Getopt documentation |
I often use MooseX-Daemonize in conjunction with MooseX-Getopt. It would
be great if you cold add a Moose documentation for the attributes
provided by MooseX-Daemonize (Getopt uses this documentation to build a
help message):
e.g.
has foreground => (
metaclass => 'Getopt',
cmd_aliases => 'f',
isa => 'Bool',
is => 'ro',
default => sub { 0 },
documentation => 'If true, the process won't background.',
);