diff options
author | Tristan Sloughter <[email protected]> | 2014-06-15 19:18:14 -0500 |
---|---|---|
committer | Tristan Sloughter <[email protected]> | 2014-10-11 11:13:04 -0500 |
commit | 0516b405ccb98febcf94a8e94000f4a633569f59 (patch) | |
tree | 08eb3c09943ac68a4493ff7e2fc5925842bc4627 /src/rlx_prv_discover.erl | |
parent | 5096c28c17ea256f48ce049a43d11b172532e03e (diff) | |
download | relx-0516b405ccb98febcf94a8e94000f4a633569f59.tar.gz relx-0516b405ccb98febcf94a8e94000f4a633569f59.tar.bz2 relx-0516b405ccb98febcf94a8e94000f4a633569f59.zip |
provider task dependencies
Diffstat (limited to 'src/rlx_prv_discover.erl')
-rw-r--r-- | src/rlx_prv_discover.erl | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/src/rlx_prv_discover.erl b/src/rlx_prv_discover.erl index 21e5687..c05cdb1 100644 --- a/src/rlx_prv_discover.erl +++ b/src/rlx_prv_discover.erl @@ -21,9 +21,9 @@ %%% @doc This provider uses the lib_dir setting of the state. It searches the %%% Lib Dirs looking for all OTP Applications that are available. When it finds %%% those OTP Applications it loads the information about them and adds them to -%%% the state of available apps. This implements the rlx_provider behaviour. +%%% the state of available apps. This implements the provider behaviour. -module(rlx_prv_discover). --behaviour(rlx_provider). +-behaviour(provider). -export([init/1, do/1, @@ -31,12 +31,24 @@ -include("relx.hrl"). +-define(PROVIDER, discover). +-define(DEPS, []). + %%============================================================================ %% API %%============================================================================ + -spec init(rlx_state:t()) -> {ok, rlx_state:t()}. init(State) -> - {ok, State}. + State1 = rlx_state:add_provider(State, providers:create([{name, ?PROVIDER}, + {module, ?MODULE}, + {bare, false}, + {deps, ?DEPS}, + {example, "build"}, + {short_desc, ""}, + {desc, ""}, + {opts, []}])), + {ok, State1}. %% @doc recursively dig down into the library directories specified in the state %% looking for OTP Applications |