Why not adopt me?
This distribution is up for adoption!
If you're interested then please contact the PAUSE module admins via
email.
NAME
Gentoo::PerlMod::Version::Env - Get/parse settings from %ENV
VERSION
version v0.8.1
FUNCTIONS
opts
my $hash = Gentoo::PerlMod::Version::Env::opts();
hasopt
GENTOO_PERLMOD_VERSION=" foo=5 ";
if ( Gentoo::PerlMod::Version::Env::hasopt('foo') ) {
pass('has opt foo');
}
getopt
GENTOO_PERLMOD_VERSION=" foo=5 ";
if ( Gentoo::PerlMod::Version::Env::hasopt('foo') ) {
is( Gentoo::PerlMod::Version::Env::getopt('foo'), 5 , ' foo == 5' );
}
AUTHOR
Kent Fredric <kentnl@cpan.org>
COPYRIGHT AND LICENSE
This software is copyright (c) 2017 by Kent Fredric <kentnl@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.