=head1 NAME Module::Reload - Reload %INC files when updated on disk =head1 SYNOPSIS Module::Reload->check; =head1 DESCRIPTION When Perl pulls a file via C, it stores the filename in the global hash C<%INC>. The next time Perl tries to C the same file, it sees the file in C<%INC> and does not reload from disk. This module's handler iterates over C<%INC> and reloads the file if it has changed on disk. Set $Module::Reload::Debug to enable debugging output. =head1 BUGS A growing number of pragmas (C, C, etc.) assume that they are loaded once only. When you reload the same file again, they tend to become confused and break. If you feel motivated to submit patches for these problems, I would encourage that. =head1 SEE ALSO Event =head1 AUTHOR Copyright © 1997-1998 Doug MacEachern & Joshua Pritikin. All rights reserved. This package is free software and is provided "as is" without express or implied warranty. It may be used, redistributed and/or modified under the terms of the Perl Artistic License (see http://www.perl.com/perl/misc/Artistic.html)