Sophie

Sophie

distrib > Fedora > 15 > i386 > by-pkgid > f5e3a7510b1e49e4b8816ce047ff655e > files > 18

perl-MooseX-App-Cmd-0.06-5.fc15.noarch.rpm

package Test::MyCmd::Command::bark;
use Moose;

extends qw(MooseX::App::Cmd::Command);

=head1 NAME

Test::MyCmd::Command::bark - required field is used

=cut

has wow => (
    isa => "Str",
    is  => "ro",
    required => 1,
    documentation => "required option field",
);

sub execute {
  my ($self, $opt, $arg) =@_;

  die "my dog name barks " . $self->wow . "\n";
}

1;