Dist::Zilla::Role::AfterBuild - something that runs after building is mostly complete


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

Index


Code Index:

NAME

Top

Dist::Zilla::Role::AfterBuild - something that runs after building is mostly complete

VERSION

Top

version 4.200008

DESCRIPTION

Top

Plugins implementing this role have their after_build method called once all the files have been written out. It is passed a hashref with the following data:

  build_root - the directory in which the dist was built

AUTHOR

Top

Ricardo SIGNES <rjbs@cpan.org>

COPYRIGHT AND LICENSE

Top


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

package Dist::Zilla::Role::AfterBuild;
BEGIN {
  $Dist::Zilla::Role::AfterBuild::VERSION = '4.200008';
}
# ABSTRACT: something that runs after building is mostly complete
use Moose::Role;
with 'Dist::Zilla::Role::Plugin';


requires 'after_build';

no Moose::Role;
1;

__END__