Asset-Pack
view release on metacpan or search on metacpan
"App::FatPacker" : "0.009017",
"CPAN::Meta" : "2.120900",
"ExtUtils::MakeMaker" : "7.00",
"Test::More" : "0.99"
},
"requires" : {
"Cwd" : "0",
"ExtUtils::MakeMaker" : "0",
"File::Spec" : "0",
"Test::Differences" : "0",
"Test::Fatal" : "0",
"Test::More" : "0",
"Test::TempDir::Tiny" : "0",
"perl" : "5.006"
}
}
},
"provides" : {
"Asset::Pack" : {
"file" : "lib/Asset/Pack.pm",
"version" : "0.000008"
---
abstract: 'Easily pack assets into Perl Modules that can be fat-packed'
author:
- 'James Laver <james.laver@gmail.com>'
build_requires:
Cwd: '0'
ExtUtils::MakeMaker: '0'
File::Spec: '0'
Test::Differences: '0'
Test::Fatal: '0'
Test::More: '0'
Test::TempDir::Tiny: '0'
perl: '5.006'
configure_requires:
ExtUtils::MakeMaker: '0'
perl: '5.006'
dynamic_config: 0
generated_by: 'Dist::Zilla version 6.009, CPAN::Meta::Converter version 2.150010'
license: perl
meta-spec:
Makefile.PL view on Meta::CPAN
"Try::Tiny" => 0,
"parent" => 0,
"strict" => 0,
"warnings" => 0
},
"TEST_REQUIRES" => {
"Cwd" => 0,
"ExtUtils::MakeMaker" => 0,
"File::Spec" => 0,
"Test::Differences" => 0,
"Test::Fatal" => 0,
"Test::More" => 0,
"Test::TempDir::Tiny" => 0
},
"VERSION" => "0.000008",
"test" => {
"TESTS" => "t/*.t t/00-compile/*.t t/internals/*.t t/interop/*.t"
}
);
my %FallbackPrereqs = (
"Cwd" => 0,
"Data::Dumper" => 0,
"Exporter" => 0,
"ExtUtils::MakeMaker" => 0,
"File::Spec" => 0,
"Path::Tiny" => "0.069",
"Test::Differences" => 0,
"Test::Fatal" => 0,
"Test::More" => 0,
"Test::TempDir::Tiny" => 0,
"Try::Tiny" => 0,
"parent" => 0,
"strict" => 0,
"warnings" => 0
);
unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
t/00-report-prereqs.dd view on Meta::CPAN
'App::FatPacker' => '0.009017',
'CPAN::Meta' => '2.120900',
'ExtUtils::MakeMaker' => '7.00',
'Test::More' => '0.99'
},
'requires' => {
'Cwd' => '0',
'ExtUtils::MakeMaker' => '0',
'File::Spec' => '0',
'Test::Differences' => '0',
'Test::Fatal' => '0',
'Test::More' => '0',
'Test::TempDir::Tiny' => '0',
'perl' => '5.006'
}
}
};
$x;
}
t/write_index.t view on Meta::CPAN
use strict;
use warnings;
use Test::More tests => 2;
use Asset::Pack qw( write_index );
use Test::TempDir::Tiny;
use Test::Fatal qw( exception );
use Path::Tiny qw( path );
use Cwd;
my $temp = tempdir();
my $sample = {
a => 1,
b => 2,
d => path('.'),
};
my $code = write_index( $sample, 'Test::X::Index', "$temp/lib" );
( run in 0.968 second using v1.01-cache-2.11-cpan-54e63673c56 )