CPAN-Index-API

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

            "MooseX::ClassAttribute" : "0",
            "Path::Class" : "0",
            "Path::Tiny" : "0",
            "Scalar::Util" : "0",
            "Symbol" : "0",
            "Text::Template" : "0",
            "URI" : "0",
            "URI::file" : "0",
            "XML::Twig" : "0",
            "base" : "0",
            "namespace::autoclean" : "0",
            "perl" : "5.008001",
            "strict" : "0",
            "warnings" : "0"
         }
      },
      "test" : {
         "recommends" : {
            "CPAN::Meta" : "2.120900"
         },
         "requires" : {

META.yml  view on Meta::CPAN

  MooseX::ClassAttribute: '0'
  Path::Class: '0'
  Path::Tiny: '0'
  Scalar::Util: '0'
  Symbol: '0'
  Text::Template: '0'
  URI: '0'
  URI::file: '0'
  XML::Twig: '0'
  base: '0'
  namespace::autoclean: '0'
  perl: '5.008001'
  strict: '0'
  warnings: '0'
resources:
  bugtracker: https://github.com/genio/cpan-index-api/issues
  homepage: https://github.com/genio/cpan-index-api
  repository: https://github.com/genio/cpan-index-api.git
version: '0.008'
x_Dist_Zilla:
  perl:

Makefile.PL  view on Meta::CPAN

    "MooseX::ClassAttribute" => 0,
    "Path::Class" => 0,
    "Path::Tiny" => 0,
    "Scalar::Util" => 0,
    "Symbol" => 0,
    "Text::Template" => 0,
    "URI" => 0,
    "URI::file" => 0,
    "XML::Twig" => 0,
    "base" => 0,
    "namespace::autoclean" => 0,
    "strict" => 0,
    "warnings" => 0
  },
  "TEST_REQUIRES" => {
    "Compress::Zlib" => 0,
    "ExtUtils::MakeMaker" => 0,
    "File::Spec" => 0,
    "File::Temp" => 0,
    "Path::Tiny" => 0,
    "Test::More" => "0.88",

lib/CPAN/Index/API.pm  view on Meta::CPAN

package CPAN::Index::API;

our $VERSION = '0.008';

use strict;
use warnings;

use Path::Class qw(dir);
use Carp        qw(croak);
use Class::Load qw(load_class);
use namespace::autoclean;
use Moose;
use Moose::Util::TypeConstraints qw(find_type_constraint);

has files => (
    is      => 'bare',
    isa     => 'HashRef',
    traits  => ['Hash'],
    handles => { files => 'values', file => 'get', file_names => 'keys' },
);

lib/CPAN/Index/API/File/MailRc.pm  view on Meta::CPAN

package CPAN::Index::API::File::MailRc;

our $VERSION = '0.008';

use strict;
use warnings;
use Scalar::Util qw(blessed);
use namespace::autoclean;
use Moose;

with qw(
    CPAN::Index::API::Role::Writable
    CPAN::Index::API::Role::Readable
    CPAN::Index::API::Role::Clonable
);

has authors => (
    is      => 'bare',

lib/CPAN/Index/API/File/ModList.pm  view on Meta::CPAN

package CPAN::Index::API::File::ModList;

our $VERSION = '0.008';

use strict;
use warnings;
use URI;
use Carp        qw(carp croak);
use Path::Class qw(file);
use namespace::autoclean;
use Moose;

with qw(
    CPAN::Index::API::Role::Writable
    CPAN::Index::API::Role::Readable
    CPAN::Index::API::Role::Clonable
    CPAN::Index::API::Role::HavingFilename
    CPAN::Index::API::Role::HavingGeneratedBy
);

lib/CPAN/Index/API/File/PackagesDetails.pm  view on Meta::CPAN

our $VERSION = '0.008';

use strict;
use warnings;

use URI;
use URI::file;
use Path::Class qw(file dir);
use Carp        qw(croak);
use List::Util  qw(first);
use namespace::autoclean;
use Moose;

with qw(
    CPAN::Index::API::Role::Writable
    CPAN::Index::API::Role::Readable
    CPAN::Index::API::Role::Clonable
    CPAN::Index::API::Role::HavingFilename
    CPAN::Index::API::Role::HavingGeneratedBy
);

lib/CPAN/Index/API/File/Whois.pm  view on Meta::CPAN

package CPAN::Index::API::File::Whois;

our $VERSION = '0.008';

use strict;
use warnings;

use XML::Twig;
use namespace::autoclean;
use Moose;
use MooseX::ClassAttribute;

with qw(
    CPAN::Index::API::Role::Writable
    CPAN::Index::API::Role::Readable
    CPAN::Index::API::Role::Clonable
    CPAN::Index::API::Role::HavingGeneratedBy
);

lib/CPAN/Index/API/Role/Writable.pm  view on Meta::CPAN

use warnings;

use File::Basename qw(fileparse);
use Path::Class    qw(file dir);
use Path::Tiny     qw(path);
use Text::Template qw(fill_in_string);
use Symbol         qw(qualify_to_ref);
use Scalar::Util   qw(blessed);
use Carp           qw(croak);
use Compress::Zlib qw(gzopen $gzerrno);
use namespace::autoclean;
use Moose::Role;

requires 'default_location';

has tarball_is_default => (
    is         => 'ro',
    isa        => 'Bool',
    lazy_build => 1,
);

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

                                      'MooseX::ClassAttribute' => '0',
                                      'Path::Class' => '0',
                                      'Path::Tiny' => '0',
                                      'Scalar::Util' => '0',
                                      'Symbol' => '0',
                                      'Text::Template' => '0',
                                      'URI' => '0',
                                      'URI::file' => '0',
                                      'XML::Twig' => '0',
                                      'base' => '0',
                                      'namespace::autoclean' => '0',
                                      'perl' => '5.008001',
                                      'strict' => '0',
                                      'warnings' => '0'
                                    }
                    },
       'test' => {
                   'recommends' => {
                                     'CPAN::Meta' => '2.120900'
                                   },
                   'requires' => {

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

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