Mojo::Home
НАЗВАНИЕ
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');
Application class.
МЕТОДЫ
Mojo::Home inherits all methods from Mojo::Base and implements the following new ones.
detect
$home = $home->detect; $home = $home->detect('My::App');
Detect home directory from application class.
lib_dir
my $path = $home->lib_dir;
Path to lib
directory.
list_files
my $files = $home->list_files; my $files = $home->list_files('foo/bar');
List all files in directory and subdirectories recursively.
parse
$home = $home->parse('/foo/bar');
Parse path.
rel_dir
my $path = $home->rel_dir('foo/bar');
Generate absolute path for relative directory.
rel_file
my $path = $home->rel_file('foo/bar.html');
Generate absolute path for relative file.
to_string
my $string = $home->to_string; my $string = "$home";
Home directory.