The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

CPAN::Dashboard - generate a dashboard of information about a selection of CPAN dists

SYNOPSIS

 use CPAN::Dashboard;

 my $dashboard = CPAN::Dashboard->new(author => 'NEILB');
 foreach my $dist (@{ $dashboard->distributions }) {
    ...
 }

DESCRIPTION

CPAN::Dashboard constructs a list of distribution objects, which can then be used to construct a CPAN dashboard. You either specify a CPAN author, in which case all the author's current dists are used, or you pass a list of distribution names.

REPOSITORY

https://github.com/neilbowers/CPAN-Dashboard

AUTHOR

Neil Bowers <neilb@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2014 by Neil Bowers <neilb@cpan.org>.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.