CPAN-WWW-Top100-Retrieve

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

      "runtime" : {
         "requires" : {
            "Exporter" : "0",
            "HTML::TableExtract" : "0",
            "LWP::UserAgent" : "0",
            "Moose" : "0",
            "Moose::Util::TypeConstraints" : "0",
            "MooseX::StrictConstructor" : "0.08",
            "Params::Coerce" : "0",
            "URI" : "0",
            "namespace::autoclean" : "0",
            "parent" : "0",
            "perl" : "5.006",
            "strict" : "0",
            "warnings" : "0"
         }
      },
      "test" : {
         "recommends" : {
            "CPAN::Meta" : "2.120900"
         },

lib/CPAN/WWW/Top100/Retrieve.pm  view on Meta::CPAN

$CPAN::WWW::Top100::Retrieve::VERSION = '1.001';
our $AUTHORITY = 'cpan:APOCAL';

# ABSTRACT: Retrieves the CPAN Top100 data from http://ali.as/top100

# import the Moose stuff
use Moose;
use MooseX::StrictConstructor 0.08;
use Moose::Util::TypeConstraints;
use Params::Coerce;
use namespace::autoclean;

# get some utility stuff
use LWP::UserAgent;
use URI;
use HTML::TableExtract;

use CPAN::WWW::Top100::Retrieve::Dist;
use CPAN::WWW::Top100::Retrieve::Utils qw( default_top100_uri dbids type2dbid dbid2type );

has 'debug' => (

lib/CPAN/WWW/Top100/Retrieve/Dist.pm  view on Meta::CPAN

# Declare our package
package CPAN::WWW::Top100::Retrieve::Dist;
$CPAN::WWW::Top100::Retrieve::Dist::VERSION = '1.001';
our $AUTHORITY = 'cpan:APOCAL';

# ABSTRACT: Describes a dist in the Top100

# import the Moose stuff
use Moose;
use MooseX::StrictConstructor 0.08;
use namespace::autoclean;

has 'type' => (
	isa		=> 'Str',
	is		=> 'ro',
	required	=> 1,
);

has 'dbid' => (
	isa		=> 'Int',
	is		=> 'ro',

t/00-report-prereqs.dd  view on Meta::CPAN

       'runtime' => {
                      'requires' => {
                                      'Exporter' => '0',
                                      'HTML::TableExtract' => '0',
                                      'LWP::UserAgent' => '0',
                                      'Moose' => '0',
                                      'Moose::Util::TypeConstraints' => '0',
                                      'MooseX::StrictConstructor' => '0.08',
                                      'Params::Coerce' => '0',
                                      'URI' => '0',
                                      'namespace::autoclean' => '0',
                                      'parent' => '0',
                                      'perl' => '5.006',
                                      'strict' => '0',
                                      'warnings' => '0'
                                    }
                    },
       'test' => {
                   'recommends' => {
                                     'CPAN::Meta' => '2.120900'
                                   },

 view all matches for this distribution
 view release on metacpan -  search on metacpan

( run in 0.952 second using v1.00-cache-2.02-grep-82fe00e-cpan-c98054f2a92 )