NAME
    Data::Validate::WithYAML::Plugin::NoSpam - Plugin to check that a given
    text is no spam.
VERSION
    version 0.04
SYNOPSIS
    The check is done with heuristics. It checks that there are no  or [url=""] tags in the text...
        use Data::Validate::WithYAML::Plugin::NoSpam;
    
        my $foo = Data::Validate::WithYAML::Plugin::NoSpam->check(
           'This is a Spam-Link',
        );
        ...
        
        # use the plugin via Data::Validate::WithYAML
        
        use Data::Validate::WithYAML;
        
        my $text      = 'This is a Spam-Link';
        my $validator = Data::Validate::WithYAML->new( 'test.yml' );
        print "yes" if $validator->check( 'textfield', $text );
    test.yml
      ---
      step1:
          textfield:
              plugin: NoSpam
              type: required
SUBROUTINES
 check
AUTHOR
    Renee Baecker 
COPYRIGHT AND LICENSE
    This software is Copyright (c) 2012 by Renee Baecker.
    This is free software, licensed under:
      The Artistic License 2.0 (GPL Compatible)