NAME
ex::lib - The same as lib
, but makes relative path absolute.
VERSION
Version 0.01
SYNOPSIS
Simple use like use lib ...
:
use ex::lib qw(./mylibs1 ../mylibs2);
use ex::lib 'mylibs';
THE GOAL
The main reason of this library is transformate relative paths to absolute at the BEGIN
stage, and push transformed to @INC
. This is useful, when you running under mod_perl
, use something like Apache::StatINC
, and your application may change working directory. When using common lib
, relative paths stays relative to curernt working directory, So in case of chdir StatINC
fails to reload module.
BUGS
Please report any bugs or feature requests to <bug-ex-lib@rt.cpan.org>
, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=ex-lib. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
COPYRIGHT & LICENSE
Copyright 2007-2008 Mons Anderson, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
AUTHOR
Mons Anderson, <mons@cpan.org>