
Mojo::Home - Detect And Access The Project Root Directory In Mojo

use Mojo::Home;
my $home = Mojo::Home->new;
$home->detect;

Mojo::Home is a container for home directories.

Mojo::Home implements the following attributes.
app_class my $class = $home->app_class;
$home = $home->app_class('Foo::Bar');

Mojo::Home inherits all methods from Mojo::Base and implements the following new ones.
detect $home = $home->detect;
$home = $home->detect('My::App');
lib_dirmy $path = $home->lib_dir;
parse $home = $home->parse('/foo/bar');
rel_dir my $path = $home->rel_dir('foo/bar');
rel_file my $path = $home->rel_file('foo/bar.html');
to_string my $string = $home->to_string;
my $string = "$home";