summaryrefslogtreecommitdiffstats
path: root/lib/Dist/Zilla/Plugin/MakefilePL/Develop.pm
blob: 0c6ddcd60647ec9ebf9a92ae5ae78099f829abbe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
package Dist::Zilla::Plugin::MakefilePL::Develop;
use Moose;

with qw(
    Dist::Zilla::Role::FileGatherer
    Dist::Zilla::Role::FileMunger
    Dist::Zilla::Role::FilePruner
);

sub gather_files {
    my $self = shift;
    return unless $self->zilla->isa('Dist::Zilla::Dist::Minter');

    (my $mod_name = $self->zilla->name) =~ s/-/::/g;
    my $content = <<CONTENTS;
# This module uses Dist::Zilla for development. This Makefile.PL will let you
# run the tests, but you are encouraged to install Dist::Zilla and the needed
# plugins if you intend on doing any serious hacking.

use strict;
use warnings;

use ExtUtils::MakeMaker::Dist::Zilla::Develop;

WriteMakefile(
    NAME => '$mod_name',
);
CONTENTS

    $self->add_file(
        Dist::Zilla::File::InMemory->new(
            name    => 'Makefile.PL',
            content => $content,
        )
    );
}

sub munge_files {
    my $self = shift;
    return unless $self->zilla->isa('Dist::Zilla::Dist::Minter');

    my ($dist_ini) = grep { $_->name eq 'dist.ini' } @{ $self->zilla->files };
    return unless $dist_ini;

    if ($dist_ini->isa('Dist::Zilla::File::OnDisk')) {
        my $content = $dist_ini->content;
        Dist::Zilla::File::InMemory->meta->rebless_instance(
            $dist_ini,
            content => $content . "\n[MakefilePL::Develop]\n",
        );
    }
    elsif ($dist_ini->isa('Dist::Zilla::File::InMemory')) {
        $dist_ini->content($dist_ini->content . "\n[MakefilePL::Develop]\n");
    }
    elsif ($dist_ini->isa('Dist::Zilla::File::FromCode')) {
        my $code = $dist_ini->code;
        my $weak_dist_ini = $dist_ini;
        Scalar::Util::weaken($weak_dist_ini);
        $dist_ini->code(sub {
            $weak_dist_ini->$code . "\n[MakefilePL::Develop]\n"
        });
    }
}

sub prune_files {
    my $self = shift;
    return unless $self->zilla->isa('Dist::Zilla::Dist::Builder');
    for my $file (@{ $self->zilla->files }) {
        next unless $file->name eq 'Makefile.PL';
        $self->zilla->prune_file($file);
    }
}

__PACKAGE__->meta->make_immutable;
no Moose;

1;