};
my $RUN_PREREQS = {
+ 'B::Debug' => '0',
'Browser::Open' => '0',
'Capture::Tiny' => '0',
'Class::XSAccessor' => '0',
'Digest::MD5' => '0',
- 'JSON::PP' => '0',
+ 'HTML::Entities' => '3.69',
+ 'HTML::Parser' => '0',
+ 'JSON::MaybeXS' => '1.003003',
'Moo' => '0',
'PPI::HTML' => '1.07',
'Parallel::Iterator' => '0',
'Pod::Coverage' => '0.06',
'Pod::Coverage::CountParents' => '0',
+ 'Sereal::Decoder' => '0',
+ 'Sereal::Encoder' => '0',
'Storable' => '0',
'Template' => '2.00',
'namespace::clean' => '0',
- 'Devel::Cover' => '1.20',
+ 'Devel::Cover' => '1.29',
};
my %META = (
=head1 VERSION
-Version v1.200.0
+Version v1.290.0
=cut
-our $VERSION = 'v1.200.0';
+our $VERSION = 'v1.290.0';
=head1 SYNOPSIS
=head1 DESCRIPTION
-This task module lets you easily install L<Devel::Cover> 1.20 and all its recommended dependencies.
+This task module lets you easily install L<Devel::Cover> 1.29 and all its recommended dependencies.
=head1 DEPENDENCIES
=item *
-L<Devel::Cover> 1.20
+L<Devel::Cover> 1.29
=item *
=item *
+L<B::Debug>
+
+=item *
+
L<Browser::Open>
=item *
=item *
-L<JSON::PP>
+L<HTML::Entities> 3.69
+
+=item *
+
+L<HTML::Parser>
+
+=item *
+
+L<JSON::MaybeXS> 1.003003
=item *
=item *
+L<Sereal::Decoder>
+
+=item *
+
+L<Sereal::Encoder>
+
+=item *
+
L<Storable>
=item *
=head1 COPYRIGHT & LICENSE
-Copyright 2012,2013,2014,2015 Vincent Pit, all rights reserved.
+Copyright 2012,2013,2014,2015,2016,2017 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.
use Test::More;
my $TESTED_PREREQS = {
+ 'B::Debug' => '0',
'Browser::Open' => '0',
'Capture::Tiny' => '0',
'Class::XSAccessor' => '0',
'Digest::MD5' => '0',
- 'JSON::PP' => '0',
+ 'HTML::Entities' => '3.69',
+ 'HTML::Parser' => '0',
+ 'JSON::MaybeXS' => '1.003003',
'Moo' => '0',
'PPI::HTML' => '1.07',
'Parallel::Iterator' => '0',
'Pod::Coverage' => '0.06',
'Pod::Coverage::CountParents' => '0',
+ 'Sereal::Decoder' => '0',
+ 'Sereal::Encoder' => '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.20' ];
+push @tests, [ 'Devel::Cover' => '1.29' ];
for my $test (@tests) {
my ($module, $version) = @$test;