summaryrefslogtreecommitdiff
path: root/include/rebar.hrl
diff options
context:
space:
mode:
authorTristan Sloughter <t@crashfast.com>2014-11-23 15:13:53 -0600
committerTristan Sloughter <t@crashfast.com>2014-11-24 18:52:24 -0600
commit414621fb82b796aa6c4f329958694a2c3faa5116 (patch)
tree829395dfd7beaa41c901005e060c8f752273806c /include/rebar.hrl
parent2e0ea8f8d27db2cabe5958f0c01ef66940b5ccc3 (diff)
move rebar.hrl to src to keep private, not for use in plugins
Diffstat (limited to 'include/rebar.hrl')
-rw-r--r--include/rebar.hrl45
1 files changed, 0 insertions, 45 deletions
diff --git a/include/rebar.hrl b/include/rebar.hrl
deleted file mode 100644
index 794d738..0000000
--- a/include/rebar.hrl
+++ /dev/null
@@ -1,45 +0,0 @@
-%% TODO: rename FAIL to ABORT once we require at least R13B04 for
-%% building rebar. Macros with different arity were not supported by the
-%% compiler before 13B04.
--define(FAIL, rebar_utils:abort()).
--define(ABORT(Str, Args), rebar_utils:abort(Str, Args)).
-
--define(CONSOLE(Str, Args), io:format(Str++"~n", Args)).
-
--define(DEBUG(Str, Args), rebar_log:log(debug, Str, Args)).
--define(INFO(Str, Args), rebar_log:log(info, Str, Args)).
--define(WARN(Str, Args), rebar_log:log(warn, Str, Args)).
--define(ERROR(Str, Args), rebar_log:log(error, Str, Args)).
-
--define(FMT(Str, Args), lists:flatten(io_lib:format(Str, Args))).
-
--define(DEFAULT_BASE_DIR, "").
--define(DEFAULT_LIB_DIRS, ["_checkouts", "apps", "lib", "."]).
--define(DEFAULT_DEPS_DIR, "_deps").
--define(DEFAULT_PLUGINS_DIR, "_plugins").
--define(DEFAULT_TEST_DEPS_DIR, "_tdeps").
--define(DEFAULT_CONFIG_FILE, "rebar.config").
--define(LOCK_FILE, "rebar.lock").
--define(CONFIG_DIR, ".rebar3").
-
--ifdef(namespaced_types).
--type rebar_dict() :: dict:dict().
--else.
--type rebar_dict() :: dict().
--endif.
-
--ifdef(namespaced_types).
--type rebar_digraph() :: digraph:graph().
--else.
--type rebar_digraph() :: digraph().
--endif.
-
--define(GRAPH_VSN, 2).
--type v() :: {digraph:vertex(), term()} | 'false'.
--type e() :: {digraph:vertex(), digraph:vertex()}.
--type graph() :: {list(v()), list(e())}.
--record(graph,
- {
- vsn = ?GRAPH_VSN :: pos_integer(),
- info = {[], []} :: graph()
- }).