Dist::Zilla::Role::InstallTool - something that creates an install program for a dist


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

Index


Code Index:

NAME

Top

Dist::Zilla::Role::InstallTool - something that creates an install program for a dist

VERSION

Top

version 4.200008

DESCRIPTION

Top

Plugins implementing InstallTool have their setup_installer method called to inject files after all other file injection and munging has taken place. They're expected to produce files needed to make the distribution installable, like Makefile.PL or Build.PL and add them with the add_file method provided by Dist::Zilla::Role::FileInector, which is also composed by this role.

AUTHOR

Top

Ricardo SIGNES <rjbs@cpan.org>

COPYRIGHT AND LICENSE

Top


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

package Dist::Zilla::Role::InstallTool;
BEGIN {
  $Dist::Zilla::Role::InstallTool::VERSION = '4.200008';
}
# ABSTRACT: something that creates an install program for a dist
use Moose::Role;
with qw(
  Dist::Zilla::Role::Plugin
  Dist::Zilla::Role::FileInjector
);

use Moose::Autobox;


requires 'setup_installer';

no Moose::Role;
1;

__END__