Cave-Wrapper

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

         "recommends" : {
            "CPAN::Meta" : "2.120900",
            "ExtUtils::MakeMaker" : "7.00",
            "Path::Tiny" : "0.058",
            "Test::More" : "0.99"
         },
         "requires" : {
            "ExtUtils::MakeMaker" : "0",
            "File::Spec" : "0",
            "Path::Tiny" : "0",
            "Test::Fatal" : "0",
            "Test::More" : "0",
            "Test::TempDir::Tiny" : "0",
            "perl" : "5.006"
         }
      }
   },
   "provides" : {
      "Cave::Wrapper" : {
         "file" : "lib/Cave/Wrapper.pm",
         "version" : "1.000001"

META.yml  view on Meta::CPAN

---
abstract: "A Wrapper to the Paludis 'cave' Client."
author:
  - 'Kent Fredric <kentnl@cpan.org>'
build_requires:
  ExtUtils::MakeMaker: '0'
  File::Spec: '0'
  Path::Tiny: '0'
  Test::Fatal: '0'
  Test::More: '0'
  Test::TempDir::Tiny: '0'
  perl: '5.006'
configure_requires:
  Devel::CheckBin: '0'
  ExtUtils::MakeMaker: '0'
  perl: '5.006'
dynamic_config: 0
generated_by: 'Dist::Zilla version 6.009, CPAN::Meta::Converter version 2.150010'
license: perl

Makefile.PL  view on Meta::CPAN

    "Moo" => 0,
    "Sub::Install" => 0,
    "namespace::autoclean" => 0,
    "strict" => 0,
    "warnings" => 0
  },
  "TEST_REQUIRES" => {
    "ExtUtils::MakeMaker" => 0,
    "File::Spec" => 0,
    "Path::Tiny" => 0,
    "Test::Fatal" => 0,
    "Test::More" => 0,
    "Test::TempDir::Tiny" => 0
  },
  "VERSION" => "1.000001",
  "test" => {
    "TESTS" => "t/*.t t/00-compile/*.t"
  }
);


my %FallbackPrereqs = (
  "Carp" => 0,
  "ExtUtils::MakeMaker" => 0,
  "File::Spec" => 0,
  "Moo" => 0,
  "Path::Tiny" => 0,
  "Sub::Install" => 0,
  "Test::Fatal" => 0,
  "Test::More" => 0,
  "Test::TempDir::Tiny" => 0,
  "namespace::autoclean" => 0,
  "strict" => 0,
  "warnings" => 0
);


unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
  delete $WriteMakefileArgs{TEST_REQUIRES};

misc/built_with.json  view on Meta::CPAN

      "ExtUtils::MakeMaker" : "7.24",
      "File::Spec" : "3.66",
      "Moo" : "2.003000",
      "Path::Tiny" : "0.104",
      "Pod::Coverage::TrustPod" : "0.100003",
      "Software::License::Perl_5" : "0.103012",
      "Sub::Install" : "0.928",
      "Test::CPAN::Changes" : "0.400002",
      "Test::CPAN::Meta" : "0.25",
      "Test::EOL" : "1.6",
      "Test::Fatal" : "0.014",
      "Test::Kwalitee" : "1.25",
      "Test::MinimumVersion" : "0.101082",
      "Test::More" : "1.302073",
      "Test::Pod" : "1.51",
      "Test::Pod::Coverage" : "1.10",
      "Test::TempDir::Tiny" : "0.016",
      "namespace::autoclean" : "0.28",
      "strict" : "1.11",
      "warnings" : "1.37"
   },

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

                   'recommends' => {
                                     'CPAN::Meta' => '2.120900',
                                     'ExtUtils::MakeMaker' => '7.00',
                                     'Path::Tiny' => '0.058',
                                     'Test::More' => '0.99'
                                   },
                   'requires' => {
                                   'ExtUtils::MakeMaker' => '0',
                                   'File::Spec' => '0',
                                   'Path::Tiny' => '0',
                                   'Test::Fatal' => '0',
                                   'Test::More' => '0',
                                   'Test::TempDir::Tiny' => '0',
                                   'perl' => '5.006'
                                 }
                 }
     };
  $x;
 }

t/01-basic.t  view on Meta::CPAN


use strict;
use warnings;

use Test::More tests => 2;
use Test::Fatal;
use Test::TempDir::Tiny qw( tempdir );
use Path::Tiny;
my $tmpdir;

BEGIN {
  $tmpdir = tempdir("homedir");
  my $world      = path($tmpdir)->child('world')->absolute;
  my $name_cache = path($tmpdir)->child('name-cache')->absolute;
  my $repo       = path($tmpdir)->child('repo')->absolute;
  my $profiles   = $repo->child('profiles')->absolute;



( run in 1.345 second using v1.01-cache-2.11-cpan-54e63673c56 )