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

NAME

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

SYNOPSIS

    use Mojo::Home;

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

DESCRIPTION

Mojo::Home is a container for home directories.

ATTRIBUTES

Mojo::Home implements the following attributes.

app_class

    my $class = $home->app_class;
    $home     = $home->app_class('Foo::Bar');

METHODS

Mojo::Home inherits all methods from Mojo::Base and implements the following new ones.

detect

    $home = $home->detect;
    $home = $home->detect('My::App');

lib_dir

    my $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";

SEE ALSO

Mojolicious, Mojolicious::Book, http://mojolicious.org.