Browse Source

add exports used by plugins to rebar_api

pull/302/head
Tristan Sloughter 10 years ago
parent
commit
bff483a570
1 changed files with 19 additions and 1 deletions
  1. +19
    -1
      src/rebar_api.erl

+ 19
- 1
src/rebar_api.erl View File

@ -5,7 +5,11 @@
-include_lib("providers/include/providers.hrl").
-export([abort/0, abort/2,
console/2,
debug/2, info/2, warn/2, error/2]).
debug/2, info/2, warn/2, error/2,
expand_env_variable/3,
get_arch/0,
wordsize/0]).
-export_type([rebar_dict/0, rebar_digraph/0]).
%%%%%%%%%%%%%%%%%%%%%%%
@ -30,3 +34,17 @@ info(Str, Args) -> ?INFO(Str, Args).
warn(Str, Args) -> ?WARN(Str, Args).
%% @doc logs with severity `error'
error(Str, Args) -> ?ERROR(Str, Args).
%%
%% Given env. variable FOO we want to expand all references to
%% it in InStr. References can have two forms: $FOO and ${FOO}
%% The end of form $FOO is delimited with whitespace or eol
%%
expand_env_variable(InStr, VarName, RawVarValue) ->
rebar_utils:expand_env_variable(InStr, VarName, RawVarValue).
get_arch() ->
rebar_utils:get_arch().
wordsize() ->
rebar_utils:wordsize().

Loading…
Cancel
Save