Dist::Zilla::Role::AfterRelease - something that runs after release is mostly complete


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

Index


Code Index:

NAME

Top

Dist::Zilla::Role::AfterRelease - something that runs after release is mostly complete

VERSION

Top

version 4.200008

DESCRIPTION

Top

Plugins implementing this role have their after_release method called once the release is done.

AUTHOR

Top

Ricardo SIGNES <rjbs@cpan.org>

COPYRIGHT AND LICENSE

Top


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

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


requires 'after_release';

no Moose::Role;
1;

__END__