Dist::Zilla::Role::BuildRunner - something used as a delegating agent during 'dzil run'


Dist-Zilla documentation Contained in the Dist-Zilla distribution.

Index


Code Index:

NAME

Top

Dist::Zilla::Role::BuildRunner - something used as a delegating agent during 'dzil run'

VERSION

Top

version 4.200008

DESCRIPTION

Top

Plugins implementing this role have their build method called during dzil run. It's passed the root directory of the build test dir.

REQUIRED METHODS

Top

build

This method will throw an exception on failure.

AUTHOR

Top

Ricardo SIGNES <rjbs@cpan.org>

COPYRIGHT AND LICENSE

Top


Dist-Zilla documentation Contained in the Dist-Zilla distribution.

package Dist::Zilla::Role::BuildRunner;
BEGIN {
  $Dist::Zilla::Role::BuildRunner::VERSION = '4.200008';
}
# ABSTRACT: something used as a delegating agent during 'dzil run'
use Moose::Role;
with 'Dist::Zilla::Role::Plugin';


requires 'build';

no Moose::Role;
1;

__END__