NAME
Data::Dmp::Meta - A fork of Data::Dmp
VERSION
This document describes version 0.13 of Data::Dmp::Meta (from Perl distribution Dist-Zilla-Plugin-Rinci-Wrap), released on 2016-06-02.
SYNOPSIS
use Data::Dmp::Meta;
$SPEC{foo} = {
v => 1.1,
args => { arg1=>{schema=>'str*'} },
completion => sub { "blah" },
};
dd {old_data=>'$SPEC{foo}'}, $SPEC{foo};
will output something like:
{ args => {arg1=>{schema=>'str*'}}, completion=>$SPEC{foo}->{completion}, v=>1.1 }
DESCRIPTION
Like Data::Dmp, but when encountering a coderef (or other unknown type), will refer to an item in a structure.
Will probably be generalized and extracted to its own dist in the future.
HOMEPAGE
Please visit the project's homepage at https://metacpan.org/release/Dist-Zilla-Plugin-Rinci-Wrap.
SOURCE
Source repository is at https://github.com/sharyanto/perl-Dist-Zilla-Plugin-Rinci-Wrap.
BUGS
Please report any bugs or feature requests on the bugtracker website https://rt.cpan.org/Public/Dist/Display.html?Name=Dist-Zilla-Plugin-Rinci-Wrap
When submitting a bug or request, please include a test-file or a patch to an existing test-file that illustrates the bug or desired feature.
AUTHOR
perlancar <perlancar@cpan.org>
COPYRIGHT AND LICENSE
This software is copyright (c) 2016 by perlancar@cpan.org.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.