MooseX::Compile::CLI::Base - base class for commands working on classes and


MooseX-Compile-CLI documentation  | view source Contained in the MooseX-Compile-CLI distribution.

Index


NAME

Top

MooseX::Compile::CLI::Base - base class for commands working on classes and directories of .pm files

SYNOPSIS

Top

    package MooseX::Compile::CLI::Command::foo;
    use Moose;

    extends qw(MooseX::Compile::CLI::Base);

    sub filter_file {
        ...
    }

    augment run => sub {
        my $self = shift;

        $self->all_files();
    };

DESCRIPTION

Top

This base class provides the various shared options for MooseX::Compile::CLI::Command::clean and MooseX::Compile::CLI::Command::compile.


MooseX-Compile-CLI documentation  | view source Contained in the MooseX-Compile-CLI distribution.