NAME
Types::RENEEB - Several predefined Type::Tiny types
VERSION
version 0.10
SYNOPSIS
package TypesTest;
use strict;
use warnings;
use Moo;
use Types::RENEEB qw(
DistName DistVersion
OPMVersion OPMVersionWildcard
);
has distname => ( is => 'ro', isa => DistName );
has distversion => ( is => 'ro', isa => DistVersion );
has opm_version => ( is => 'ro', isa => OPMVersion );
sub check_opm_version {
OPMVersion->('2.0.0');
}
sub check_opm_version {
OPMVersion->('2.0.x');
}
1;
DESCRIPTION
Types::RENEEB
is a collection of types I need very often
MODULES
These Types::
modules are shipped in this distribution:
Types::RENEEB
inherits the types of the mentioned modules.
Types::Dist
DistFQ
DistName-DistVersion
package MyClass;
use Moo;
use Types::Dist qw(DistName);
has dist => ( is => 'ro', isa => DistName );
1;
And then use your class:
my $object = MyClass->new( dist => 'Types-RENEEB-0.09' );
my $object = MyClass->new( dist => '0.09' ); # fails
my $object = MyClass->new( dist => 'Types-RENEEB' ); # fails
DistName
A name of a distribution
my $object = MyClass->new( dist => 'Types-RENEEB' ); # ok
DistVersion
A version of a distribution
my $object = MyClass->new( dist => '0.09' ); # ok
CPANfile
An instance of Module::CPANfile
package MyClass;
use Moo;
use Types::Dist qw(CPANfile);
has prereqs => ( is => 'ro', isa => CPANfile, coerce => 1 );
1;
And then use your class:
my $object = MyClass->new( prereqs => '/path/to/cpanfile' );
my @features = $object->prereqs->features; # call features method from Module::CPANfile
Types::OPM
OPMVersion
An OPM version looks like 2.4.5 or 6.0.1.
OPMVersionWildcard
An OPM version with wildcard as used in Addons. To define a version of the OPM framework that is needed to install the addon, the developer can use 'x' as a wildcard.
E.g. Addons for OPM 6.x can be installed on any OPM 6 installation, whilst addons that define 2.4.x as the framework version can only installed on any OPM 2.4 installation, but not on OPM 2.3 installation.
OPMFile
An object of OPM::Parser.
It checks if the file exists and can be parsed without an error.
COERCIONS
OPMFile
From String to OPM::Parser
When a string is given, it is coerced into an OPM::Parser object.
AUTHOR
Renee Baecker <reneeb@cpan.org>
COPYRIGHT AND LICENSE
This software is Copyright (c) 2019 by Renee Baecker.
This is free software, licensed under:
The Artistic License 2.0 (GPL Compatible)