File Coverage

lib/Dist/Zilla/Plugin/Code/BuildRunner.pm
Criterion Covered Total %
statement 23 23 100.0
branch n/a
condition n/a
subroutine 8 8 100.0
pod 0 1 0.0
total 31 32 96.8


line stmt bran cond sub pod time code
1             package Dist::Zilla::Plugin::Code::BuildRunner;
2              
3 2     2   2109 use 5.006;
  2         11  
4 2     2   28 use strict;
  2         4  
  2         47  
5 2     2   10 use warnings;
  2         2  
  2         89  
6              
7             our $VERSION = '0.007';
8              
9 2     2   557 use Moose;
  2         451571  
  2         13  
10 2     2   14555 use namespace::autoclean;
  2         5  
  2         19  
11              
12             with 'Dist::Zilla::Role::BuildRunner';
13              
14 2     2   812 use Config::MVP 2.200012 (); # https://github.com/rjbs/Config-MVP/issues/13
  2         192  
  2         69  
15 2     2   443 use MooseX::Types::Moose qw(CodeRef);
  2         54740  
  2         17  
16              
17             has build => (
18             is => 'ro',
19             isa => 'CodeRef',
20             reader => '_build',
21             required => 1,
22             );
23              
24             sub build {
25 2     2 0 124193 my $self = shift;
26              
27 2         88 my $code_ref = $self->_build;
28 2         13 return $self->$code_ref(@_);
29             }
30              
31             __PACKAGE__->meta->make_immutable;
32              
33             1;
34              
35             __END__
36              
37             =pod
38              
39             =encoding UTF-8
40              
41             =head1 NAME
42              
43             Dist::Zilla::Plugin::Code::BuildRunner - something used as a delegating agent during 'dzil run'
44              
45             =head1 VERSION
46              
47             Version 0.007
48              
49             =head1 SYNOPSIS
50              
51             =head2 Dist::Zilla::Role::PluginBundle
52              
53             package Dist::Zilla::PluginBundle::MyBundle;
54              
55             use Moose;
56             with 'Dist::Zilla::Role::PluginBundle';
57              
58             sub bundle_config {
59             my ( $class, $section ) = @_;
60              
61             my @plugins;
62             push @plugins, [
63             'SomeUniqueName',
64             'Dist::Zilla::Plugin::Code::BuildRunner',
65             {
66             build => sub {
67             my ( $self, $build_dir ) = @_;
68             $self->log('Hello world');
69             },
70             },
71             ];
72              
73             return @plugins;
74             }
75              
76             =head2 Dist::Zilla::Role::PluginBundle::Easy
77              
78             package Dist::Zilla::PluginBundle::MyBundle;
79              
80             use Moose;
81             with 'Dist::Zilla::Role::PluginBundle::Easy';
82              
83             sub configure {
84             my ( $self ) = @_;
85              
86             $self->add_plugins([
87             'Code::BuildRunner',
88             {
89             build => sub {
90             my ( $self, $build_dir ) = @_;
91             $self->log('Hello world');
92             },
93             },
94             ]);
95              
96             return;
97             }
98              
99             =head1 DESCRIPTION
100              
101             This plugin implements the L<Dist::Zilla::Role::BuildRunner> role.
102              
103             =head1 SUPPORT
104              
105             =head2 Bugs / Feature Requests
106              
107             Please report any bugs or feature requests through the issue tracker
108             at L<https://github.com/skirmess/Dist-Zilla-Plugin-Code/issues>.
109             You will be notified automatically of any progress on your issue.
110              
111             =head2 Source Code
112              
113             This is open source software. The code repository is available for
114             public review and contribution under the terms of the license.
115              
116             L<https://github.com/skirmess/Dist-Zilla-Plugin-Code>
117              
118             git clone https://github.com/skirmess/Dist-Zilla-Plugin-Code.git
119              
120             =head1 AUTHOR
121              
122             Sven Kirmess <sven.kirmess@kzone.ch>
123              
124             =head1 COPYRIGHT AND LICENSE
125              
126             This software is Copyright (c) 2020-2021 by Sven Kirmess.
127              
128             This is free software, licensed under:
129              
130             The (two-clause) FreeBSD License
131              
132             =head1 SEE ALSO
133              
134             L<Dist::Zilla>, L<Dist::Zilla::Role::BuildRunner>
135              
136             =cut
137              
138             # vim: ts=4 sts=4 sw=4 et: syntax=perl