Copyright © (C) 2012 Erlware, LLC.
Authors: Aman Mangal (mangalaman93@gmail.com).
| bundle/1 | bundles the app, finds all the dependencies and copies them into the app folder. |
| find_all_deps_for/1 | returns all no standard list of direct dependent applications for given application/package (i.e. |
bundle(Appname) -> Result
Appname = atom()Result = ok | {error, Reason}Reason = term()
bundles the app, finds all the dependencies and copies them into the app folder
find_all_deps_for(Appname) -> Result
Appname = atom()Result = {ok, [atom()]} | {error, Reason}Reason = term()
returns all no standard list of direct dependent applications for given application/package (i.e. not recursively)
Generated by EDoc