|
| 1 | + |
| 2 | + |
| 3 | +# Module barrel_deps # |
| 4 | +* [Function Index](#index) |
| 5 | +* [Function Details](#functions) |
| 6 | + |
| 7 | + |
| 8 | +<a name="index"></a> |
| 9 | + |
| 10 | +## Function Index ## |
| 11 | + |
| 12 | + |
| 13 | +<table width="100%" border="1" cellspacing="0" cellpadding="2" summary="function index"><tr><td valign="top"><a href="#deps_on_path-0">deps_on_path/0</a></td><td>List of project dependencies on the path.</td></tr><tr><td valign="top"><a href="#ensure-0">ensure/0</a></td><td>Ensure that the ebin and include paths for dependencies of |
| 14 | +this application are on the code path.</td></tr><tr><td valign="top"><a href="#ensure-1">ensure/1</a></td><td>Ensure that all ebin and include paths for dependencies |
| 15 | +of the application for Module are on the code path.</td></tr><tr><td valign="top"><a href="#get_base_dir-0">get_base_dir/0</a></td><td>Return the application directory for this application.</td></tr><tr><td valign="top"><a href="#get_base_dir-1">get_base_dir/1</a></td><td>Return the application directory for Module.</td></tr><tr><td valign="top"><a href="#local_path-1">local_path/1</a></td><td>Return an application-relative directory for this application.</td></tr><tr><td valign="top"><a href="#local_path-2">local_path/2</a></td><td>Return an application-relative directory from Module's application.</td></tr><tr><td valign="top"><a href="#new_siblings-1">new_siblings/1</a></td><td>Find new siblings paths relative to Module that aren't already on the |
| 16 | +code path.</td></tr></table> |
| 17 | + |
| 18 | + |
| 19 | +<a name="functions"></a> |
| 20 | + |
| 21 | +## Function Details ## |
| 22 | + |
| 23 | +<a name="deps_on_path-0"></a> |
| 24 | + |
| 25 | +### deps_on_path/0 ### |
| 26 | + |
| 27 | + |
| 28 | +<pre><code> |
| 29 | +deps_on_path() -> [ProjNameAndVers] |
| 30 | +</code></pre> |
| 31 | + |
| 32 | +<br></br> |
| 33 | + |
| 34 | + |
| 35 | +List of project dependencies on the path. |
| 36 | +<a name="ensure-0"></a> |
| 37 | + |
| 38 | +### ensure/0 ### |
| 39 | + |
| 40 | + |
| 41 | +<pre><code> |
| 42 | +ensure() -> ok |
| 43 | +</code></pre> |
| 44 | + |
| 45 | +<br></br> |
| 46 | + |
| 47 | + |
| 48 | +Ensure that the ebin and include paths for dependencies of |
| 49 | +this application are on the code path. Equivalent to |
| 50 | +ensure(?Module). |
| 51 | +<a name="ensure-1"></a> |
| 52 | + |
| 53 | +### ensure/1 ### |
| 54 | + |
| 55 | + |
| 56 | +<pre><code> |
| 57 | +ensure(Module) -> ok |
| 58 | +</code></pre> |
| 59 | + |
| 60 | +<br></br> |
| 61 | + |
| 62 | + |
| 63 | +Ensure that all ebin and include paths for dependencies |
| 64 | +of the application for Module are on the code path. |
| 65 | +<a name="get_base_dir-0"></a> |
| 66 | + |
| 67 | +### get_base_dir/0 ### |
| 68 | + |
| 69 | + |
| 70 | +<pre><code> |
| 71 | +get_base_dir() -> string() |
| 72 | +</code></pre> |
| 73 | + |
| 74 | +<br></br> |
| 75 | + |
| 76 | + |
| 77 | +Return the application directory for this application. Equivalent to |
| 78 | +get_base_dir(?MODULE). |
| 79 | +<a name="get_base_dir-1"></a> |
| 80 | + |
| 81 | +### get_base_dir/1 ### |
| 82 | + |
| 83 | + |
| 84 | +<pre><code> |
| 85 | +get_base_dir(Module) -> string() |
| 86 | +</code></pre> |
| 87 | + |
| 88 | +<br></br> |
| 89 | + |
| 90 | + |
| 91 | +Return the application directory for Module. It assumes Module is in |
| 92 | +a standard OTP layout application in the ebin or src directory. |
| 93 | +<a name="local_path-1"></a> |
| 94 | + |
| 95 | +### local_path/1 ### |
| 96 | + |
| 97 | + |
| 98 | +<pre><code> |
| 99 | +local_path(Components) -> string() |
| 100 | +</code></pre> |
| 101 | + |
| 102 | +<br></br> |
| 103 | + |
| 104 | + |
| 105 | +Return an application-relative directory for this application. |
| 106 | +Equivalent to local_path(Components, ?MODULE). |
| 107 | +<a name="local_path-2"></a> |
| 108 | + |
| 109 | +### local_path/2 ### |
| 110 | + |
| 111 | + |
| 112 | +<pre><code> |
| 113 | +local_path(Components::[string()], Module) -> string() |
| 114 | +</code></pre> |
| 115 | + |
| 116 | +<br></br> |
| 117 | + |
| 118 | + |
| 119 | +Return an application-relative directory from Module's application. |
| 120 | +<a name="new_siblings-1"></a> |
| 121 | + |
| 122 | +### new_siblings/1 ### |
| 123 | + |
| 124 | + |
| 125 | +<pre><code> |
| 126 | +new_siblings(Module) -> [Dir] |
| 127 | +</code></pre> |
| 128 | + |
| 129 | +<br></br> |
| 130 | + |
| 131 | + |
| 132 | +Find new siblings paths relative to Module that aren't already on the |
| 133 | +code path. |
0 commit comments