NAME
Devel::REPL::Plugin::ModuleAutoLoader - Autoloader Plugin for Devel::REPL
VERSION
Version 1.0
DESCRIPTION
Plugin for Devel::REPL that attempts automagically load modules used in a line of code, that have yet to be loaded.
Just load this plugin either from the Devel::REPL shell, or within your repl.rc file and it does the rest.
HIC SUNT DRACONES
While this plugin is handy for lazy developers such as myself, there is one side effect that you should be aware of.
If the code contains a module that needs to be loaded, that statement will be evaluated twice, this is the design of the plugin and not a bug.
So:
$ my $foo = 1;
1
$ $foo++; my $DateTime->now();
2016-07-05T14:51:50
$ $foo
3 # <-- Not what you'd expect!
Just something to be aware of. ;)
AUTHOR
James Ronan, <james at ronanweb.co.uk>
BUGS
Please report any bugs or feature requests to bug-devel-repl-plugin-moduleautoloader at rt.cpan.org
, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Devel-REPL-Plugin-ModuleAutoLoader. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
SUPPORT
You can find documentation for this module with the perldoc command.
perldoc Devel::REPL::Plugin::ModuleAutoLoader
You can also look for information at:
RT: CPAN's request tracker (report bugs here)
http://rt.cpan.org/NoAuth/Bugs.html?Dist=Devel-REPL-Plugin-ModuleAutoLoader
AnnoCPAN: Annotated CPAN documentation
CPAN Ratings
http://cpanratings.perl.org/d/Devel-REPL-Plugin-ModuleAutoLoader
Search CPAN
http://search.cpan.org/dist/Devel-REPL-Plugin-ModuleAutoLoader/
The source code can be found on GitHub: https://github.com/jamesronan/Devel-REPL-Plugin-ModuleAutoloader
LICENSE AND COPYRIGHT
Copyright 2016 James Ronan.
This program is released under the following license: perl_5