The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Lab::Moose::DataFile::Meta - YAML Metadata file.

SYNOPSIS

 my $file = Lab::Moose::DataFile::Meta->new(
     folder => $folder,
     filename => 'metafile.yml'
 );

 $file->log(meta => {key1 => $value1, key2 => $value2});

METHODS

log

Log either an hashref or an arrayref to the log file. Augment the file's contents. The new keys/items will be merged with the existing ones. Rewrites the file with the new contents. You may not mixup calls with hashref and arrayref arguments.