package MooseX::Types::Common; # git description: v0.001013-15-gb03d3d2 # ABSTRACT: A library of commonly used type constraints # KEYWORDS: moose types classes objects constraints declare libraries strings numbers our $VERSION = '0.001014'; use strict; use warnings; use Carp (); sub import { my $self = shift; return unless @_; Carp::cluck("Tried to import the symbols " . join(', ', @_) . " from MooseX::Types::Common.\nDid you mean " . "MooseX::Types::Common::String or MooseX::Type::Common::Numeric?"); } 1; __END__ =pod =encoding UTF-8 =head1 NAME MooseX::Types::Common - A library of commonly used type constraints =head1 VERSION version 0.001014 =head1 SYNOPSIS use MooseX::Types::Common::String qw/SimpleStr/; has short_str => (is => 'rw', isa => SimpleStr); ... #this will fail $object->short_str("string\nwith\nbreaks"); use MooseX::Types::Common::Numeric qw/PositiveInt/; has count => (is => 'rw', isa => PositiveInt); ... #this will fail $object->count(-33); =head1 DESCRIPTION A set of commonly-used type constraints that do not ship with Moose by default. =head1 SEE ALSO =over =item * L =item * L =item * L =item * L =back =head1 ORIGIN This distribution was extracted from the L code base by Guillermo Roditi (groditi). =head1 SUPPORT Bugs may be submitted through L (or L). There is also a mailing list available for users of this distribution, at L. There is also an irc channel available for users of this distribution, at L on C|irc://irc.perl.org/#moose>. =head1 AUTHORS =over 4 =item * Matt S Trout - mst (at) shadowcatsystems.co.uk (L) =item * K. James Cheetham =item * Guillermo Roditi =back =head1 CONTRIBUTORS =for stopwords Karen Etheridge Justin Hunter Dave Rolsky Tomas Doran Toby Inkster Gregory Oschwald Denis Ibaev Graham Knop Caleb Cushing =over 4 =item * Karen Etheridge =item * Justin Hunter =item * Dave Rolsky =item * Tomas Doran =item * Toby Inkster =item * Gregory Oschwald =item * Denis Ibaev =item * Graham Knop =item * Gregory Oschwald =item * Caleb Cushing =back =head1 COPYRIGHT AND LICENSE This software is copyright (c) 2009 by Matt S Trout - mst (at) shadowcatsystems.co.uk (L). 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