CPAN-Local-Plugin-DistroList

 view release on metacpan or  search on metacpan

META.yml  view on Meta::CPAN

  version: 1.4
name: CPAN-Local-Plugin-DistroList
requires:
  CPAN::DistnameInfo: 0
  CPAN::Local::Plugin: 0
  CPAN::Local::Role::Gather: 0
  File::Temp: 0
  LWP::Simple: 0
  Moose: 0
  Path::Class: 0
  Try::Tiny: 0
  URI: 0
  namespace::clean: 0
  strict: 0
  warnings: 0
resources:
  bugtracker: http://rt.cpan.org/Public/Dist/Display.html?Name=CPAN-Local-Plugin-DistroList
version: 0.003

Makefile.PL  view on Meta::CPAN

  "LICENSE" => "perl",
  "NAME" => "CPAN::Local::Plugin::DistroList",
  "PREREQ_PM" => {
    "CPAN::DistnameInfo" => 0,
    "CPAN::Local::Plugin" => 0,
    "CPAN::Local::Role::Gather" => 0,
    "File::Temp" => 0,
    "LWP::Simple" => 0,
    "Moose" => 0,
    "Path::Class" => 0,
    "Try::Tiny" => 0,
    "URI" => 0,
    "namespace::clean" => 0,
    "strict" => 0,
    "warnings" => 0
  },
  "VERSION" => "0.003",
  "test" => {
    "TESTS" => "t/*.t"
  }
);

lib/CPAN/Local/Plugin/DistroList.pm  view on Meta::CPAN

}

# ABSTRACT: Populate a mirror with a list of distributions

use strict;
use warnings;

use Path::Class qw(file dir);
use File::Temp;
use URI;
use Try::Tiny;
use LWP::Simple;
use CPAN::DistnameInfo;

use Moose;
extends 'CPAN::Local::Plugin';
with 'CPAN::Local::Role::Gather';
use namespace::clean -except => 'meta';

has list =>
(



( run in 0.273 second using v1.01-cache-2.11-cpan-05444aca049 )