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

NAME

CPAN::WWW::Top100::Retrieve::Dist - Describes a dist in the Top100

VERSION

  This document describes v1.001 of CPAN::WWW::Top100::Retrieve::Dist - released November 06, 2014 as part of CPAN-WWW-Top100-Retrieve.

SYNOPSIS

        #!/usr/bin/perl
        use strict; use warnings;
        use CPAN::WWW::Top100::Retrieve;

        my $top100 = CPAN::WWW::Top100::Retrieve->new;
        foreach my $dist ( @{ $top100->list( 'heavy' ) } ) {
                print "Heavy dist(" . $dist->dist . ") rank(" . $dist->rank .
                        ") author(" . $dist->author . ") score(" .
                        $dist->score . ")\n";
        }

DESCRIPTION

This module holds the info for a distribution listed in the Top100.

Attributes

Those attributes hold information about the distribution.

type

The type of Top100 this dist is listed on.

Example: heavy

dbid

The dbid of Top100 this dist is listed on.

Example: 1

rank

The rank of this dist on the Top100 list.

Example: 81

author

The author of this dist.

Example: LBROCARD

dist

The distribution name.

Example: Tapper-MCP

score

The score of the distribution on the Top100 list.

Example: 153

If the type is: heavy

        The score is the number of downstream dependencies

If the type is: volatile, debian, downstream, meta1/2/3

        The score is the number of dependent modules

If the type is: fail

        The score is the FAIL score

SEE ALSO

Please see those modules/websites for more information related to this module.

AUTHOR

Apocalypse <APOCAL@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2014 by Apocalypse.

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

The full text of the license can be found in the LICENSE file included with this distribution.

DISCLAIMER OF WARRANTY

THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.

IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.