App-GitHooks-Plugin-NotifyReleasesToSlack

 view release on metacpan or  search on metacpan

Build.PL  view on Meta::CPAN

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
                # directory.
                sub ACTION_test
                {
                        my ( $self ) = @_;
 
                        $self->recursive_test_files(1);
 
                        $self->test_files( 't', 'xt' )
                                if $ENV{'RELEASE_TESTING'};
 
                        return $self->SUPER::ACTION_test();
                }
 
                # Force running extended tests when testing the distribution.
                sub ACTION_disttest
                {
                        my ( $self ) = @_;
 
                        local $ENV{ RELEASE_TESTING } = 1;
 
                        return $self->SUPER::ACTION_disttest();
                }
        |,
);
 
my $builder = $class->new(
        module_name          => 'App::GitHooks::Plugin::NotifyReleasesToSlack',
        license              => 'Perl_5',
        dist_author          => q{Guillaume Aubert <aubertg@cpan.org>},
        dist_version_from    => 'lib/App/GitHooks/Plugin/NotifyReleasesToSlack.pm',
        build_requires       =>



( run in 0.268 second using v1.01-cache-2.11-cpan-87723dcf8b7 )