summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTristan Sloughter <t@crashfast.com>2014-10-03 06:33:33 -0500
committerTristan Sloughter <t@crashfast.com>2014-10-03 06:33:33 -0500
commitb37a5ae611aaf6b84a046fbe716f40c2aa8c75d8 (patch)
treef9a7d4d802ebdf4a0350d64b1d5ac001ffa801ef /include
parent75e669dc801616271ffee0e6db56a5e0bdfe4fc5 (diff)
move providers to separate app
Diffstat (limited to 'include')
-rw-r--r--include/rebar.hrl9
1 files changed, 0 insertions, 9 deletions
diff --git a/include/rebar.hrl b/include/rebar.hrl
index 7f85892..4263fb9 100644
--- a/include/rebar.hrl
+++ b/include/rebar.hrl
@@ -13,15 +13,6 @@
-define(FMT(Str, Args), lists:flatten(io_lib:format(Str, Args))).
--record(provider, {name :: atom(), % The 'user friendly' name of the task
- provider_impl :: atom(), % The implementation of the task, maybe fun or
- bare :: boolean(), % Indicates whether a build config is needed
- deps :: [atom()], % The list of dependencies
- desc :: string(), % The description for the task
- short_desc :: string(), % A one line short description of the task
- example :: string() | undefined, % An example of the task usage
- opts :: list()}). % The list of options that the task requires/understands
-
-define(DEFAULT_LIB_DIRS, ["apps", "libs", "."]).
-define(DEFAULT_DEPS_DIR, "_deps").
-define(DEFAULT_PLUGINS_DIR, "_plugins").