use 5.026; use warnings; package Pod::Weaver::PluginBundle::Author::AJNN; # ABSTRACT: AJNN Pod::Weaver configuration $Pod::Weaver::PluginBundle::Author::AJNN::VERSION = '0.03'; use Pod::Weaver 4.009; use Pod::Weaver::Config::Assembler; use Pod::Weaver::PluginBundle::Author::AJNN::Author; use Pod::Weaver::PluginBundle::Author::AJNN::License; sub _exp { my ( $moniker ) = @_; return Pod::Weaver::Config::Assembler->expand_package( $moniker ); } sub mvp_bundle_config { return ( [ '@AJNN/CorePrep', _exp('@CorePrep'), {} ], [ '@AJNN/SingleEncoding', _exp('-SingleEncoding'), {} ], [ '@AJNN/Name', _exp('Name'), {} ], [ '@AJNN/Version', _exp('Version'), {} ], [ 'SYNOPSIS', _exp('Generic'), {} ], [ 'DESCRIPTION', _exp('Generic'), {} ], [ 'OVERVIEW', _exp('Generic'), {} ], [ '@AJNN/Leftovers', _exp('Leftovers'), {} ], [ '@AJNN/Author', __PACKAGE__ . '::Author', {} ], [ '@AJNN/License', __PACKAGE__ . '::License', {} ], ); } 1; __END__ =pod =encoding UTF-8 =head1 NAME Pod::Weaver::PluginBundle::Author::AJNN - AJNN Pod::Weaver configuration =head1 VERSION version 0.03 =head1 SYNOPSIS package Dist::Zilla::PluginBundle::Author::AJNN; use Pod::Weaver::PluginBundle::Author::AJNN; use Moose; with 'Dist::Zilla::Role::PluginBundle::Easy'; sub configure { shift->add_plugins( ..., [ 'PodWeaver' => { config_plugin => '@Author::AJNN' } ], ); } or in F: [PodWeaver] config_plugin = @Author::AJNN =head1 DESCRIPTION This is the configuration I use for L. Most likely you don't want or need to read this. =head1 OVERVIEW This plugin bundle is nearly equivalent to the following C config: [@CorePrep] [-SingleEnconding] [Name] [Version] [Generic / SYNOPSIS] [Generic / DESCRIPTION] [Generic / OVERVIEW] [Leftovers] [@Author::AJNN::Author] [@Author::AJNN::License] =head1 BUGS This configuration is hacked together specifically for AJNN's needs. It has not been designed with extensibility or reusability in mind. No forward or backward compatibility should be expected. =head1 SEE ALSO L L L L L =head1 AUTHOR Arne Johannessen If you contact me by email, please make sure you include the word "Perl" in your subject header to help beat the spam filters. =head1 COPYRIGHT AND LICENSE Arne Johannessen has dedicated the work to the Commons by waiving all of his or her rights to the work worldwide under copyright law and all related or neighboring legal rights he or she had in the work, to the extent allowable by law. Works under CC0 do not require attribution. When citing the work, you should not imply endorsement by the author. =cut