CGI-Application-Plugin-Throttle

 view release on metacpan or  search on metacpan

xt/style-no-trailing-whitespace.t  view on Meta::CPAN

#
sub checkFile
{

    # The file.
    my $file = $File::Find::name;

    # We don't care about directories
    return if ( !-f $file );

    # Nor about backup files.
    return if ( $file =~ /~$/ );

    # or Makefiles
    return if ( $file =~ /Makefile/ );

    # See if it is a shell/perl file.
    my $isShell = 0;
    my $isPerl  = 0;

    # Read the file.



( run in 1.265 second using v1.01-cache-2.11-cpan-49f99fa48dc )