]> git.vpit.fr Git - perl/modules/Task-Devel-Cover-Recommended.git/commitdiff
Update to Devel::Cover 1.20
authorVincent Pit <vince@profvince.com>
Fri, 31 Jul 2015 17:41:54 +0000 (14:41 -0300)
committerVincent Pit <vince@profvince.com>
Fri, 31 Jul 2015 17:41:54 +0000 (14:41 -0300)
Makefile.PL
lib/Task/Devel/Cover/Recommended.pm
t/01-deps.t

index 98066ba96a0d99826347a22cb7d897089f195854..8c5b2dad3bdbd9693a4fcb4182542fa1349b7ec1 100644 (file)
@@ -18,20 +18,23 @@ my $CONFIGURE_PREREQS = {
 my $BUILD_PREREQS = {
  'ExtUtils::MakeMaker' => '0',
  'Test::More'          => '0',
- 'Test::Warn'          => '0',
 };
 
 my $RUN_PREREQS = {
  'Browser::Open'               => '0',
+ 'Capture::Tiny'               => '0',
+ 'Class::XSAccessor'           => '0',
  'Digest::MD5'                 => '0',
  'JSON::PP'                    => '0',
+ 'Moo'                         => '0',
  'PPI::HTML'                   => '1.07',
  'Parallel::Iterator'          => '0',
  'Pod::Coverage'               => '0.06',
  'Pod::Coverage::CountParents' => '0',
  'Storable'                    => '0',
  'Template'                    => '2.00',
- 'Devel::Cover'                => '1.08',
+ 'namespace::clean'            => '0',
+ 'Devel::Cover'                => '1.20',
 };
 
 my %META = (
index 44ef3d2d729ab0d62437115f27143ec3d8e9333b..c10149553117a480613f4ae562cc29556e180bcb 100644 (file)
@@ -23,7 +23,7 @@ our $VERSION = 'v1.80.0';
 
 =head1 DESCRIPTION
 
-This task module lets you easily install L<Devel::Cover> 1.08 and all its recommended dependencies.
+This task module lets you easily install L<Devel::Cover> 1.20 and all its recommended dependencies.
 
 =head1 DEPENDENCIES
 
@@ -49,10 +49,6 @@ L<ExtUtils::MakeMaker>
 
 L<Test::More>
 
-=item *
-
-L<Test::Warn>
-
 =back
 
 =head2 Run-time dependencies
@@ -61,7 +57,7 @@ L<Test::Warn>
 
 =item *
 
-L<Devel::Cover> 1.08
+L<Devel::Cover> 1.20
 
 =item *
 
@@ -73,6 +69,14 @@ L<Browser::Open>
 
 =item *
 
+L<Capture::Tiny>
+
+=item *
+
+L<Class::XSAccessor>
+
+=item *
+
 L<Digest::MD5>
 
 =item *
@@ -81,6 +85,10 @@ L<JSON::PP>
 
 =item *
 
+L<Moo>
+
+=item *
+
 L<PPI::HTML> 1.07
 
 Devel::Cover lets you optionally pick between L<PPI::HTML> and L<Perl::Tidy>, but it will only use the former if both are installed.
@@ -105,6 +113,10 @@ L<Storable>
 
 L<Template> 2.00
 
+=item *
+
+L<namespace::clean>
+
 =back
 
 =head1 CAVEATS
@@ -131,7 +143,7 @@ You can find documentation for this module with the perldoc command.
 
 =head1 COPYRIGHT & LICENSE
 
-Copyright 2012,2013 Vincent Pit, all rights reserved.
+Copyright 2012,2013,2014,2015 Vincent Pit, all rights reserved.
 
 This program is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.
index b6ffaf104c90221f82a563e6b8a4a53a7be09819..0a3f5b77b961a6b05b753508974a0899663571e7 100644 (file)
@@ -7,20 +7,24 @@ use Test::More;
 
 my $TESTED_PREREQS = {
  'Browser::Open'               => '0',
+ 'Capture::Tiny'               => '0',
+ 'Class::XSAccessor'           => '0',
  'Digest::MD5'                 => '0',
  'JSON::PP'                    => '0',
+ 'Moo'                         => '0',
  'PPI::HTML'                   => '1.07',
  'Parallel::Iterator'          => '0',
  'Pod::Coverage'               => '0.06',
  'Pod::Coverage::CountParents' => '0',
  'Storable'                    => '0',
  'Template'                    => '2.00',
+ 'namespace::clean'            => '0',
 };
 
 plan tests => keys(%$TESTED_PREREQS) + 1;
 
 my @tests = map [ $_ => $TESTED_PREREQS->{$_} ], keys %$TESTED_PREREQS;
-push @tests, [ 'Devel::Cover' => '1.08' ];
+push @tests, [ 'Devel::Cover' => '1.20' ];
 
 for my $test (@tests) {
  my ($module, $version) = @$test;