Module::Znuny::CoreList
version 1.03
use Module::Znuny::CoreList;
my @znuny_versions = Module::Znuny::CoreList->shipped(
'6.0.x',
'Kernel::System::DB',
);
# returns (6.0.31, 6.0.32, ...)
my @modules = Module::Znuny::CoreList->modules( '6.0.32' );
my @modules = Module::Znuny::CoreList->modules( '6.1.x' );
# methods to check for CPAN modules shipped with Znuny
my @cpan_modules = Module::Znuny::CoreList->cpan_modules( '6.0.x' );
my @znuny_versions = Module::Znuny::CoreList->shipped(
'6.0.x',
'CGI',
);
returns a list of Core modules shipped with a given Znuny version
returns a list of Znuny versions that ships a given module
returns a list of CPAN modules that are shipped with a given Znuny version
The distribution is contained in a Git repository, so simply clone the repository
$ git clone git://github.com/perlservices/Module-Znuny-CoreList.git
and change into the newly-created directory.
$ cd Module-Znuny-CoreList
The project uses Dist::Zilla
to
build the distribution, hence this will need to be installed before
continuing:
$ cpanm Dist::Zilla
To install the required prequisite packages, run the following set of commands:
$ dzil authordeps --missing | cpanm
$ dzil listdeps --author --missing | cpanm
The distribution can be tested like so:
$ dzil test
To run the full set of tests (including author and release-process tests),
add the --author
and --release
options:
$ dzil test --author --release
Renee Baecker reneeb@cpan.org
This software is Copyright (c) 2021 by Renee Baecker.
This is free software, licensed under:
The Artistic License 2.0 (GPL Compatible)
Renee Baecker reneeb@cpan.org
This software is Copyright (c) 2021 by Renee Baecker.
This is free software, licensed under:
The Artistic License 2.0 (GPL Compatible)