Data-Pack
view release on metacpan or search on metacpan
"Scalar::Util" : 0,
"perl" : "5.008"
}
},
"test" : {
"requires" : {
"Carp" : 0,
"English" : 0,
"File::Find" : 0,
"File::Temp" : 0,
"Test::Differences" : 0,
"Test::More" : "0.94"
}
}
},
"provides" : {
"Data::Pack" : {
"file" : "lib/Data/Pack.pm",
"version" : "1.101611"
}
},
---
abstract: 'Pack data structures so only real content remains'
author:
- 'Marcel Gruenauer <marcel@cpan.org>'
build_requires:
Carp: 0
English: 0
File::Find: 0
File::Temp: 0
Test::Differences: 0
Test::More: 0.94
configure_requires:
ExtUtils::MakeMaker: 6.31
dynamic_config: 0
generated_by: 'Dist::Zilla version 4.101582, CPAN::Meta::Converter version 2.101591'
license: perl
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
version: 1.4
name: Data-Pack
Makefile.PL view on Meta::CPAN
my %WriteMakefileArgs = (
'ABSTRACT' => 'Pack data structures so only real content remains',
'AUTHOR' => 'Marcel Gruenauer <marcel@cpan.org>',
'BUILD_REQUIRES' => {
'Carp' => '0',
'English' => '0',
'File::Find' => '0',
'File::Temp' => '0',
'Test::Differences' => '0',
'Test::More' => '0.94'
},
'CONFIGURE_REQUIRES' => {
'ExtUtils::MakeMaker' => '6.31'
},
'DISTNAME' => 'Data-Pack',
'EXE_FILES' => [],
'LICENSE' => 'perl',
'NAME' => 'Data::Pack',
'PREREQ_PM' => {
t/01_misc.t view on Meta::CPAN
#!/usr/bin/env perl
use warnings;
use strict;
use Data::Pack ':all';
use Test::More tests => 3;
use Test::Differences;
my $h = {
a => 1,
b => [ 2 .. 4, undef, 6 .. 8 ],
c => [],
d => {},
e => undef,
f => (
bless {
f1 => undef,
f2 => 'f2',
t/02_hash_overlay.t view on Meta::CPAN
#!/usr/bin/env perl
use warnings;
use strict;
use Data::Pack ':all';
use Test::More tests => 1;
use Test::Differences;
my %h = (
a => 1,
b => [ 2 .. 4, undef, 6 .. 8 ],
f => (
bless {
f1 => undef,
f2 => 'f2',
},
'Foo'
),
( run in 3.786 seconds using v1.01-cache-2.11-cpan-df04353d9ac )