The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

MooseX::Types::PIS - PIS type for Moose classes

SYNOPSIS

  package Class;
  use Moose;
  use MooseX::Types::PIS 'PIS';
  
  has 'pis' => ( is => 'ro', isa => PIS );

  package main;
  Class->new( pis => '121.51144.13-7' );

DESCRIPTION

This module lets you constrain attributes to only contain Brazilian PIS numbers. No coercion is attempted.

'PIS' stands for Brazil's Programa de Integração Social. It is also referred to as 'PIS/PASEP'.

EXPORT

None by default, you'll usually want to request PIS explicitly.

SEE ALSO

AUTHOR

Breno G. de Oliveira, <garu at cpan.org>

BUGS

Please report any bugs or feature requests to bug-moosex-types-pis at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=MooseX-Types-PIS. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

You can find documentation for this module with the perldoc command.

    perldoc MooseX::Types::PIS

You can also look for information at:

ACKNOWLEDGEMENTS

This module is just a simple wrapper around Adriano Ferreira's excellent Business::BR::PIS validator. He did all the actual work :)

Also, thanks to Thiago Rondon for his other MooseX::Types wrappers around Business::BR::Ids - the idea for this, and several chunks of code, were shamelessly taken from those modules, nearly verbatim.

LICENSE AND COPYRIGHT

Copyright 2009 Breno G. de Oliveira.

This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License.

See http://dev.perl.org/licenses/ for more information.