From f782a19c536663d19c0930372227c7adc1526764 Mon Sep 17 00:00:00 2001 From: Mohammad S Anwar Date: Tue, 18 Dec 2018 19:06:40 +0000 Subject: Added repo meta. --- Build.PL | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Build.PL b/Build.PL index 9d222d4..c45ef14 100644 --- a/Build.PL +++ b/Build.PL @@ -29,5 +29,10 @@ my $build = Module::Build->new( }, script_files => 'bin/', sign => 1, + meta_merge => { + resources => { + repository => 'https://github.com/derf/App-Raps2' + } + }, ); $build->create_build_script(); -- cgit v1.2.3 From ab87a3e5e3ca1f406023459b57023947093ef2fe Mon Sep 17 00:00:00 2001 From: Evan Giles Date: Tue, 2 Jul 2019 20:21:56 +1200 Subject: Update t/00-compile.t to use OO interface ...because the functional interface is deprecated --- Build.PL | 2 +- t/00-compile.t | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Build.PL b/Build.PL index c45ef14..2c09c81 100644 --- a/Build.PL +++ b/Build.PL @@ -6,7 +6,7 @@ use Module::Build; my $build = Module::Build->new( build_requires => { - 'Test::Compile' => 0, + 'Test::Compile' => "1.3.0", 'Test::Fatal' => 0, 'Test::More' => 0, 'Test::Pod' => 0, diff --git a/t/00-compile.t b/t/00-compile.t index abcaf94..375237c 100644 --- a/t/00-compile.t +++ b/t/00-compile.t @@ -5,4 +5,6 @@ use 5.010; use Test::More; use Test::Compile; -all_pl_files_ok('bin/raps2'); +my $test = Test::Compile->new(); +$test->all_files_ok('bin/raps2'); +$test->done_testing(); -- cgit v1.2.3