| do/2 | from the base directory, find all the applications at the top level and their dependencies based on the configuration and profile information. |
| find_app/2 | check that a given app in a directory is there, and whether it's valid or not based on the second argument. |
| find_app/3 | check that a given app in a directory is there, and whether it's valid or not based on the second argument. |
| find_app/4 | check that a given app in a directory is there, and whether it's valid or not based on the second argument. |
| find_apps/1 | for each directory passed, find all apps that are valid. |
| find_apps/2 | for each directory passed, find all apps according to the validity rule passed in. |
| find_apps/3 | for each directory passed, with the configured source directories, find all apps according to the validity rule passed in. |
| find_unbuilt_apps/1 | find all apps that haven't been built in a list of directories. |
| format_error/1 | formatting errors from the module. |
do(State::rebar_state:t(), LibDirs::[file:filename()]) -> rebar_state:t()
from the base directory, find all the applications at the top level and their dependencies based on the configuration and profile information.
find_app(AppDir::file:filename_all(), Validate::valid | invalid | all) -> {true, rebar_app_info:t()} | false
check that a given app in a directory is there, and whether it's valid or not based on the second argument. Returns the related app info record.
find_app(AppInfo::rebar_app_info:t(), AppDir::file:filename_all(), Validate::valid | invalid | all) -> {true, rebar_app_info:t()} | false
check that a given app in a directory is there, and whether it's valid or not based on the second argument. Returns the related app info record.
find_app(AppInfo::rebar_app_info:t(), AppDir::file:filename_all(), SrcDirs::[file:filename_all()], Validate::valid | invalid | all) -> {true, rebar_app_info:t()} | false
check that a given app in a directory is there, and whether it's valid or not based on the second argument. The third argument includes the directories where source files can be located. Returns the related app info record.
find_apps(LibDirs::[file:filename_all()]) -> [rebar_app_info:t()]
for each directory passed, find all apps that are valid. Returns all the related app info records.
find_apps(LibDirs::[file:filename_all()], Validate::valid | invalid | all) -> [rebar_app_info:t()]
for each directory passed, find all apps according to the validity rule passed in. Returns all the related app info records.
find_apps(LibDirs::[file:filename_all()], SrcDirs::[file:filename_all()], Validate::valid | invalid | all) -> [rebar_app_info:t()]
for each directory passed, with the configured source directories, find all apps according to the validity rule passed in. Returns all the related app info records.
find_unbuilt_apps(LibDirs::[file:filename_all()]) -> [rebar_app_info:t()]
find all apps that haven't been built in a list of directories
format_error(X1::term()) -> iodata()
formatting errors from the module.
Generated by EDoc