NAME

Mojo::Home - Home Sweet Home!

SYNOPSIS

use Mojo::Home;

DESCRIPTION

Mojo::Home is a container for home directories.

ATTRIBUTES

app_class

application_class

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

parts

my $parts = $home->parts;
$home     = $home->parts([qw/foo bar baz/]);

METHODS

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

new

my $home = Mojo::Home->new;
my $home = Mojo::Home->new('/foo/bar/baz');

detect

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

executable

my $path = $home->executable;

lib_dir

lib_directory

my $path = $home->lib_dir;
my $path = $home->lib_directory;

parse

$home = $home->parse('/foo/bar');

rel_dir

relative_directory

my $path = $home->rel_dir('foo/bar');
my $path = $home->relative_directory('foo/bar');

rel_file

relative_file

my $path = $home->rel_file('foo/bar.html');
my $path = $home->relative_file('foo/bar.html');

to_string

my $string = $home->to_string;
my $string = "$home";