The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Mojo::Home - Home Sweet Home!

SYNOPSIS

    use Mojo::Home;

DESCRIPTION

Mojo::Home is a container for home directories.

ATTRIBUTES

app_class

    my $class = $home->app_class;
    $home     = $home->app_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

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