package App::PDRUtils::DistIniCmd::dec_prereq_version_to; our $DATE = '2021-05-25'; # DATE our $VERSION = '0.122'; # VERSION use 5.010001; use strict; use warnings; use App::PDRUtils::Cmd; use App::PDRUtils::DistIniCmd; use App::PDRUtils::DistIniCmd::_modify_prereq_version; our %SPEC; $SPEC{handle_cmd} = { v => 1.1, summary => 'Decrease prereq version to a specified version', args => { %App::PDRUtils::DistIniCmd::common_args, %App::PDRUtils::Cmd::mod_args, %App::PDRUtils::Cmd::mod_ver_args, }, }; sub handle_cmd { App::PDRUtils::DistIniCmd::_modify_prereq_version::_modify_prereq_version( 'dec_to', @_); } 1; # ABSTRACT: Decrease prereq version to a specified version __END__ =pod =encoding UTF-8 =head1 NAME App::PDRUtils::DistIniCmd::dec_prereq_version_to - Decrease prereq version to a specified version =head1 VERSION This document describes version 0.122 of App::PDRUtils::DistIniCmd::dec_prereq_version_to (from Perl distribution App-PDRUtils), released on 2021-05-25. =head1 FUNCTIONS =head2 handle_cmd Usage: handle_cmd(%args) -> [$status_code, $reason, $payload, \%result_meta] Decrease prereq version to a specified version. This function is not exported. Arguments ('*' denotes required arguments): =over 4 =item * B* => I =item * B* => I =item * B* => I =back Returns an enveloped result (an array). First element ($status_code) is an integer containing HTTP status code (200 means OK, 4xx caller error, 5xx function error). Second element ($reason) is a string containing error message, or "OK" if status is 200. Third element ($payload) is optional, the actual result. Fourth element (%result_meta) is called result metadata and is optional, a hash that contains extra information. Return value: (any) =head1 HOMEPAGE Please visit the project's homepage at L. =head1 SOURCE Source repository is at L. =head1 BUGS Please report any bugs or feature requests on the bugtracker website L 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. =head1 AUTHOR perlancar =head1 COPYRIGHT AND LICENSE This software is copyright (c) 2021, 2019, 2018, 2017, 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. =cut