| Mojolicious documentation | view source | Contained in the Mojolicious distribution. |
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_dirmy $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_stringmy $string = $home->to_string; my $string = "$home";
Home directory.
Mojolicious, Mojolicious::Guides, http://mojolicio.us.
| Mojolicious documentation | view source | Contained in the Mojolicious distribution. |