Copyright © (C) 2012 Erlware, LLC.
Authors: Aman Mangal (mangalaman93@gmail.com).
| abort/2 | aborts the process and throws error. |
| abort/3 | aborts the process and throws error. |
| console/2 | prints output on terminal. |
| error/2 | prints error on terminal. |
| error/3 | prints error on terminal. |
| format/1 | returns the flattened string. |
| format/2 | returns the formatted string. |
| get_appfile_content/1 | finds the .app or .app.src file in the application folder and returns the content of the file. |
| success/1 | prints successful completion message on terminal. |
| success/2 | prints successful completion message on terminal. |
abort(Reason, Conclusion) -> ok
aborts the process and throws error
abort(Reason, String, Args) -> ok
aborts the process and throws error
console(Message, Args) -> ok
prints output on terminal
error(Reason, Conclusion) -> ok
prints error on terminal
error(Reason, Conclusion, Args) -> ok
prints error on terminal
format(Deeplist) -> Result
returns the flattened string
format(String, Args) -> Result
returns the formatted string
get_appfile_content(Info) -> Result
finds the .app or .app.src file in the application folder and returns the content of the file
success(Message) -> ok
prints successful completion message on terminal
success(Message, Args) -> ok
prints successful completion message on terminal
Generated by EDoc