Acme-LookOfDisapproval
view release on metacpan - search on metacpan
view release on metacpan or search on metacpan
inc/MungeInstallers.pm view on Meta::CPAN
use strict;
use warnings;
package inc::MungeInstallers;
# vim: set ts=8 sts=2 sw=2 tw=100 et :
use utf8;
use Moose;
with 'Dist::Zilla::Role::InstallTool';
use namespace::autoclean;
# TODO - this should really be a separate phase that runs after InstallTool -
# until then, all we can do is die if we are run too soon
sub setup_installer {
my $self = shift;
my @build_files = grep $_->name eq 'Build.PL', @{ $self->zilla->files };
$self->log_fatal('No Build.PL was found to munge!')
if @build_files != 1;
view all matches for this distributionview release on metacpan - search on metacpan
( run in 1.108 second using v1.00-cache-2.02-grep-82fe00e-cpan-c98054f2a92 )