=head1 NAME Validator::Custom::Guide - Validator::Custom Guide =head1 GUIDE =head2 1. Basic B<1. Create a new Validator::Custom object> use Validator::Custom; my $vc = Validator::Custom->new; B<2. Prepare data for validation> my $data = {age => 19, name => 'Ken Suzuki'}; Data must be hash reference. B<3. Prepare a rule for validation> my $rule = [ age => {message => 'age must be integer'} => [ 'not_blank', 'int' ], name => {message => 'name must be string. the length 1 to 5'} => [ 'not_blank', {length => [1, 5]} ], price => [ 'not_blank', 'int' ] ]; Rule has specific structure. which consists of several parts, such as C, C