NAME
lib::deep - lib
that choose lib path for you if you want ...
SYNOPSIS
package A::B::C;
use lib::deep; # same as 'use lib::abs qw(../../../lib);'
# same as lib::abs qw(../..);
# almost same as use lib qw(../..);
use lib::abs -1; # same as 'use lib::abs qw(../lib);'
use lib::abs -2; # same as 'use lib::abs qw(../../lib);'
use lib::abs -0; # same as 'use lib::abs qw(lib);'
SEE ALSO
lib::abs, lib
BUGS
This module wasn't tested for windows.
AUTHOR
Grishayev Anatoliy, <grian@>cpan.org
COPYRIGHT AND LICENSE
Copyright (C) 2014 by Grishayev Anatoliy
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.14.2 or, at your option, any later version of Perl 5 you may have available.