The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
AutoReloader version 0.01
=========================

This package is a drop-in replacement for AutoLoader.
Other than the core AutoLoader package, this one provides lazy
loading of files that return a subroutine reference on require.

But it's main purpose is to provide reloading of subs.

Each subroutine, when loaded, is wrapped into an outer sub.
At each call, a check of the inner subroutine's source file is
done, and if the value returned from that sub is different to
the value at load time, the function is reloaded. If the
reload fails, only the memorized check value is updated, and
the function's previous version is retained. After checking,
a magic 'goto $funcref' is performed - the function is called.

This is most useful for development and for long running
applications that must be updated at runtime, or for those that
wish to extend, grow or shrink packages at runtime.

This package depends on Scalar::Util (XS version), since it
makes use of the weaken and reftype functions therein.

Tested under perl-5.6.2.

INSTALLATION

To install this module type the following:

   perl Makefile.PL
   make
   make test
   make install

DEPENDENCIES

This module requires these other modules and libraries:

  Scalar::Util - XS version

COPYRIGHT AND LICENCE

Copyright (C) 2007 by Georg Moritz <shmem@cpan.org>

This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself, either Perl version 5.8.8 or,
at your option, any later version of Perl 5 you may have available.