Copyright © YYYY author.
Authors: author (author@example.com).
deps_on_path/0 | List of project dependencies on the path. |
ensure/0 | Ensure that the ebin and include paths for dependencies of this application are on the code path. |
ensure/1 | Ensure that all ebin and include paths for dependencies of the application for Module are on the code path. |
get_base_dir/0 | Return the application directory for this application. |
get_base_dir/1 | Return the application directory for Module. |
local_path/1 | Return an application-relative directory for this application. |
local_path/2 | Return an application-relative directory from Module's application. |
new_siblings/1 | Find new siblings paths relative to Module that aren't already on the code path. |
deps_on_path() -> [ProjNameAndVers]
List of project dependencies on the path.
ensure() -> ok
Ensure that the ebin and include paths for dependencies of this application are on the code path. Equivalent to ensure(?Module).
ensure(Module) -> ok
Ensure that all ebin and include paths for dependencies of the application for Module are on the code path.
get_base_dir() -> string()
Return the application directory for this application. Equivalent to get_base_dir(?MODULE).
get_base_dir(Module) -> string()
Return the application directory for Module. It assumes Module is in a standard OTP layout application in the ebin or src directory.
local_path(Components) -> string()
Return an application-relative directory for this application. Equivalent to local_path(Components, ?MODULE).
local_path(Components::[string()], Module) -> string()
Return an application-relative directory from Module's application.
new_siblings(Module) -> [Dir]
Find new siblings paths relative to Module that aren't already on the code path.
Generated by EDoc, Nov 1 2008, 23:07:50.