Perinci::Sub::Util::PropertyModule - Given a Rinci function metadata, find what property modules are
Contents
Bugs
Please report any bugs or feature requests on the bugtracker website
<https://rt.cpan.org/Public/Dist/Display.html?Name=Perinci-Sub-Util-PropertyModule>
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.
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.
perl v5.34.0 2022-06-16 Perinci::Sub::U...:PropertyModule(3pm)
Functions
get_required_property_modules($meta)=>array
Since the Perinci framework is modular, additional properties can be introduced by additional property
modules ("Perinci::Sub::Property::*"). These properties might be experimental, 3rd party, etc.
This function can detect which modules are used.
This function can be used during distribution building to automatically add those modules as
prerequisites.
Homepage
Please visit the project's homepage at <https://metacpan.org/release/Perinci-Sub-Util-PropertyModule>.
Name
Perinci::Sub::Util::PropertyModule - Given a Rinci function metadata, find what property modules are
required
Source
Source repository is at <https://github.com/perlancar/perl-Perinci-Sub-Util-PropertyModule>.
Synopsis
use Perinci::Sub::Util::PropertyModule qw(get_required_property_modules);
my $meta = {
v => 1.1,
args => {
foo => {
...
'form.widget' => '...',
},
bar => {},
},
'cmdline.skip_format' => 1,
result => {
table => { ... },
},
};
my $mods = get_required_property_modules($meta);
Result:
['Perinci::Sub::Property::arg::form',
'Perinci::Sub::Property::cmdline',
'Perinci::Sub::Property::result::table']
Version
This document describes version 0.46 of Perinci::Sub::Util::PropertyModule (from Perl distribution
Perinci-Sub-Util-PropertyModule), released on 2016-05-15.
