Dist::Zilla::Role::BeforeArchive - something that runs before the archive file is built


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

Index


Code Index:

NAME

Top

Dist::Zilla::Role::BeforeArchive - something that runs before the archive file is built

VERSION

Top

version 4.200008

DESCRIPTION

Top

Plugins implementing this role have their before_archive method called before the archive is actually 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::BeforeArchive;
BEGIN {
  $Dist::Zilla::Role::BeforeArchive::VERSION = '4.200008';
}
# ABSTRACT: something that runs before the archive file is built
use Moose::Role;
with 'Dist::Zilla::Role::Plugin';


requires 'before_archive';

no Moose::Role;
1;

__END__