App-Dex
view release on metacpan or search on metacpan
scripts/dex view on Meta::CPAN
978197829783978497859786978797889789979097919792979397949795979697979798979998009801our
@EXPORT_OK
=
qw/ Load Dump LoadFile DumpFile /
;
use
YAML::PP;
sub
new {
my
(
$class
,
%args
) =
@_
;
$args
{schema} ||= [
qw/ Core Perl /
];
$class
->SUPER::new(
%args
);
}
sub
Load {
my
(
$yaml
) =
@_
;
__PACKAGE__->new->load_string(
$yaml
);
}
sub
LoadFile {
my
(
$file
) =
@_
;
__PACKAGE__->new->load_file(
$file
);
( run in 0.346 second using v1.01-cache-2.11-cpan-26ccb49234f )