CPAN-Local

 view release on metacpan or  search on metacpan

META.yml  view on Meta::CPAN

  MooseX::CoercePerAttribute: 0
  MooseX::Role::Loggable: 0.009
  Path::Class: 0
  Path::Class::URI: 0
  Perl::Version: 0
  Regexp::Common: 0
  String::RewritePrefix: 0
  Try::Tiny: 0
  URI: 0
  URI::file: 0
  namespace::autoclean: 0
  namespace::clean: 0
  strict: 0
  warnings: 0
resources:
  bugtracker: http://rt.cpan.org/Public/Dist/Display.html?Name=CPAN-Local
version: 0.010

Makefile.PL  view on Meta::CPAN

    "MooseX::CoercePerAttribute" => 0,
    "MooseX::Role::Loggable" => "0.009",
    "Path::Class" => 0,
    "Path::Class::URI" => 0,
    "Perl::Version" => 0,
    "Regexp::Common" => 0,
    "String::RewritePrefix" => 0,
    "Try::Tiny" => 0,
    "URI" => 0,
    "URI::file" => 0,
    "namespace::autoclean" => 0,
    "namespace::clean" => 0,
    "strict" => 0,
    "warnings" => 0
  },
  "VERSION" => "0.010",
  "test" => {
    "TESTS" => "t/*.t"
  }
);

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

    unless $ENV{HARNESS_ACTIVE};
}

use CPAN::Index::API;
use CPAN::Index::API::File::PackagesDetails;
use File::Path;
use CPAN::DistnameInfo;
use Path::Class qw(file dir);
use URI::file;
use Perl::Version;
use namespace::autoclean;
use Moose;
extends 'CPAN::Local::Plugin';
with qw(CPAN::Local::Role::Initialise CPAN::Local::Role::Index);

has 'repo_uri' =>
(
    is  => 'ro',
    isa => 'Str',
);

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

use CPAN::Index::API::File::MailRc;
use CPAN::DistnameInfo;
use IO::String;
use URI;
use Path::Class qw(file dir);
use Carp qw(croak);
use Path::Class::URI;
use List::Util qw(first);
use Regexp::Common qw(URI);
use Compress::Zlib qw(gzopen Z_STREAM_END), '$gzerrno';
use namespace::autoclean;
use Moose;
use MooseX::CoercePerAttribute;
extends 'CPAN::Local::Plugin';
with qw(CPAN::Local::Role::Initialise CPAN::Local::Role::Index);

has 'root' =>
(
    is       => 'ro',
    isa      => 'Str',
    required => 1,

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

package CPAN::Local::Plugin::ModList;
{
  $CPAN::Local::Plugin::ModList::VERSION = '0.010';
}

# ABSTRACT: Update 03modlist.data

use CPAN::Index::API::File::ModList;
use Path::Class qw(file dir);
use namespace::autoclean;
use Moose;
extends 'CPAN::Local::Plugin';
with qw(CPAN::Local::Role::Initialise);

sub initialise
{
    my $self = shift;

    dir($self->root)->mkpath;

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

# ABSTRACT: Update 02packages.details.txt

use strict;
use warnings;

use CPAN::Index::API::File::PackagesDetails;
use CPAN::DistnameInfo;
use Path::Class qw(file dir);
use URI::file;
use Perl::Version;
use namespace::autoclean;
use Moose;
extends 'CPAN::Local::Plugin';
with qw(CPAN::Local::Role::Initialise CPAN::Local::Role::Index);

has 'repo_uri' =>
(
    is  => 'ro',
    isa => 'Str',
);

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

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