App::DocKnot::Config(3pm) | User Contributed Perl Documentation | App::DocKnot::Config(3pm) |
App::DocKnot::Config - Read and return DocKnot package configuration
use App::DocKnot::Config; my $reader = App::DocKnot::Config->new({ metadata => 'docs/docknot.yaml' }); my $config = $reader->config(); my $global_config = $reader->global_config();
Perl 5.24 or later and the modules File::BaseDir, File::ShareDir, Kwalify, and YAML::XS, all of which are available from CPAN.
This component of DocKnot reads and returns the DocKnot global configuration and the configuration for a package. It takes as input a directory of metadata and returns either the global configuration or the package configuration as a hash.
The global configuration and additional metadata about specific licenses is loaded via File::BaseDir and therefore uses XDG paths by default. This means that the configuration and supplemental license metadata is found by searching the following paths in order:
The global configuration file should be named config.yaml in that directory. The license metadata should be named licenses.yaml.
Default license metadata is included with the App::DocKnot module and is used unless more specific configuration files exist. Be aware that, if such a configuration file exists, the data is not merged and only the configuration file is used.
The global configuration file ($HOME/.config/docknot/config.yaml by default) may contain the following keys:
If this is not specified, the -a option to "docknot release" is mandatory.
If this is not specified, the -d options to "docknot dist" and "docknot release" is mandatory.
Russ Allbery <rra@cpan.org>
Copyright 2013-2022 Russ Allbery <rra@cpan.org>
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
docknot(1), App::DocKnot::Dist, <App:DocKnot::Release>, App::DocKnot::Spin::Versions
This module is part of the App-DocKnot distribution. The current version of DocKnot is available from CPAN, or directly from its web site at <https://www.eyrie.org/~eagle/software/docknot/>.
2022-01-20 | perl v5.32.1 |