X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMooseX-Types-Common.git;a=blobdiff_plain;f=lib%2FMooseX%2FTypes%2FCommon.pm;h=92f894d130fec00134e796e48187d0b73b9310f4;hp=40a785166b1bd07d155c10e3919ba38693d3846b;hb=3ebb788b98575c2a4e0187c61145bf291f23db1b;hpb=eae6c2c41e82820e99b200cc0a8172153f7ea56a diff --git a/lib/MooseX/Types/Common.pm b/lib/MooseX/Types/Common.pm index 40a7851..92f894d 100644 --- a/lib/MooseX/Types/Common.pm +++ b/lib/MooseX/Types/Common.pm @@ -1,11 +1,10 @@ package MooseX::Types::Common; +# ABSTRACT: A library of commonly used type constraints use strict; use warnings; use Carp qw/cluck/; -our $VERSION = '0.001008'; - sub import { my $package = shift; return unless @_; @@ -15,10 +14,9 @@ sub import { } 1; +__END__ -=head1 NAME - -MooseX::Types::Common - A library of commonly used type constraints +=pod =head1 SYNOPSIS @@ -30,7 +28,6 @@ MooseX::Types::Common - A library of commonly used type constraints $object->short_str("string\nwith\nbreaks"); - use MooseX::Types::Common::Numeric qw/PositiveInt/; has count => (is => 'rw', isa => PositiveInt); @@ -56,26 +53,9 @@ A set of commonly-used type constraints that do not ship with Moose by default. =back -=head1 AUTHORS +=head1 ORIGIN This distribution was extracted from the L code base by Guillermo Roditi (groditi). -The original authors of this library are: - -=over 4 - -=item * Matt S. Trout - -=item * K. J. Cheetham - -=item * Guillermo Roditi - -=back - -=head1 LICENSE - -This library is free software, you can redistribute it and/or modify -it under the same terms as Perl itself. - =cut