Skip to content

Commit

Permalink
Cleanup name, add README
Browse files Browse the repository at this point in the history
  • Loading branch information
Cory Watson authored and Cory Watson committed Mar 27, 2011
1 parent 2d8d139 commit cbb0fa4
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 1 deletion.
58 changes: 58 additions & 0 deletions README.mkdn
@@ -0,0 +1,58 @@
# NAME

MooseX::Role::Data::Verifier - Moose role for generating Data::Verifier profiles from Moose objects.

# VERSION

version 0.01

# SYNOPSIS

package TestClass;
use Moose;


with 'MooseX::Role::Data::Verifier';

has 'name' => (
is => 'rw',
isa => 'Str',
required => 1
);


# ... elsewhere


my $tc = TestClass->new;


my $dv = Data::Verifier->new(
profile => $tc->get_verifier_profile
);


$dv->verify(...); # Verify!

# DESCRIPTION

MooseX::Role::Data::Verifier provides a simple `get_verifier_profile` method
that generates a profile suitable for Data::Verifier from a Moose object.

# NOTES

This module ignores anonymous type-constraints. There's also no way to infer
from the attribute that filters need to be used. If you want to add filters,
they can be applied globally or added afterward to the hashref returned by
`get_verifier_profile`.

# AUTHOR

Cory G Watson <gphat@cpan.org>

# COPYRIGHT AND LICENSE

This software is copyright (c) 2011 by Cold Hard Code, LLC.

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
2 changes: 1 addition & 1 deletion dist.ini
@@ -1,4 +1,4 @@
name = MooseX::Role::Data::Verifier
name = MooseX-Role-Data-Verifier
author = Cory G Watson <gphat@cpan.org>
license = Perl_5
copyright_holder = Cold Hard Code, LLC
Expand Down

0 comments on commit cbb0fa4

Please sign in to comment.