Mojo::Home.3pm

Langue: en

Version: 2010-08-12 (fedora - 01/12/10)

Section: 3 (Bibliothèques de fonctions)

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');
 
 

Application class.

METHODS

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.

SEE ALSO

Mojolicious, Mojolicious::Guides, <http://mojolicious.org>.