Provided by: libmoosex-app-perl_1.33-1_all 

NAME
MooseX::App::Role - Define attributes in a role
SYNOPSIS
package MyApp::Role::SomeRole;
use Moose::Role; # optional
use MooseX::App::Role;
option 'testattr' => (
isa => 'rw',
cmd_tags => [qw(Important! Nice))],
);
DESCRIPTION
Enables the 'option' and 'parameter' keywords in your roles.
Alternatively you can also just use attribute traits:
has 'testattr' => (
isa => 'rw',
traits => ['AppOption'], # required
cmd_type => 'option', # required
cmd_tags => [qw(Important! Nice))],
);
perl v5.20.2 2015-01-10 MooseX::App::Role(3pm)