The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

package Dist::Zilla::Types 6.032;
# ABSTRACT: dzil-specific type library
#pod =head1 OVERVIEW
#pod
#pod This library provides L<MooseX::Types> types for use by Dist::Zilla. These
#pod types are not (yet?) for public consumption, and you should not rely on them.
#pod
#pod Dist::Zilla uses a number of types found in L<MooseX::Types::Perl>. Maybe
#pod that's what you want.
#pod
#pod =cut
use MooseX::Types -declare => [qw(
License OneZero YesNoStr ReleaseStatus
Path ArrayRefOfPaths
_Filename
)];
use MooseX::Types::Moose qw(Str Int Defined ArrayRef);
subtype License, as class_type('Software::License');
subtype Path, as class_type('Path::Tiny');
coerce Path, from Defined, via {
Dist::Zilla::Path::path($_);
};
subtype ArrayRefOfPaths, as ArrayRef[Path];
coerce ArrayRefOfPaths, from ArrayRef[Defined], via {
[ map { Dist::Zilla::Path::path($_) } @$_ ];
};
subtype OneZero, as Str, where { $_ eq '0' or $_ eq '1' };
subtype YesNoStr, as Str, where { /\A(?:y|ye|yes)\Z/i or /\A(?:n|no)\Z/i };
subtype ReleaseStatus, as Str, where { /\A(?:stable|testing|unstable)\z/ };
coerce OneZero, from YesNoStr, via { /\Ay/i ? 1 : 0 };
subtype _Filename, as Str,
where { $_ !~ qr/(?:\x{0a}|\x{0b}|\x{0c}|\x{0d}|\x{85}|\x{2028}|\x{2029})/ },
message { "Filename not a Str, or contains a newline or other vertical whitespace" };
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
Dist::Zilla::Types - dzil-specific type library
=head1 VERSION
version 6.032
=head1 OVERVIEW
This library provides L<MooseX::Types> types for use by Dist::Zilla. These
types are not (yet?) for public consumption, and you should not rely on them.
Dist::Zilla uses a number of types found in L<MooseX::Types::Perl>. Maybe
that's what you want.
=head1 PERL VERSION
This module should work on any version of perl still receiving updates from
the Perl 5 Porters. This means it should work on any version of perl
released in the last two to three years. (That is, if the most recently
released version is v5.40, then this module should work on both v5.40 and
v5.38.)
Although it may work on older versions of perl, no guarantee is made that the
minimum required version will not be increased. The version may be increased
for any reason, and there is no promise that patches will be accepted to
lower the minimum required perl.
=head1 AUTHOR
Ricardo SIGNES 😏 <cpan@semiotic.systems>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2024 by Ricardo SIGNES.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut