Dist::Zilla::Role::FilePruner - something that removes found files from the distribution


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

Index


Code Index:

NAME

Top

Dist::Zilla::Role::FilePruner - something that removes found files from the distribution

VERSION

Top

version 4.200008

DESCRIPTION

Top

Plugins implementing FilePruner have their prune_files method called once all the FileGatherer plugins have been called. They are expected to (optionally) remove files from the list of files to be included in the distribution.

AUTHOR

Top

Ricardo SIGNES <rjbs@cpan.org>

COPYRIGHT AND LICENSE

Top


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

package Dist::Zilla::Role::FilePruner;
BEGIN {
  $Dist::Zilla::Role::FilePruner::VERSION = '4.200008';
}
# ABSTRACT: something that removes found files from the distribution
use Moose::Role;
with 'Dist::Zilla::Role::Plugin';


requires 'prune_files';

no Moose::Role;
1;

__END__