Current section
Files
Jump to
Current section
Files
riak_core_lite
rebar.config
rebar.config
%% Add debug information in compiled code for other tools like debuggers, code coverage tools, or analysis tools
{erl_opts, [debug_info]}.
{deps, [
% worker pool library
{poolboy, "~>1.5.2"}
]}.
%% Defensive xref configuration
{xref_checks, [ undefined_function_calls, locals_not_used, deprecated_function_calls ]}.
%%-------------------------------------------------------------------
%% Profiles
%%-------------------------------------------------------------------
{profiles, [
{test, [
{erl_opts, [nowarn_export_all]},
{deps,
[
{mustache, ".*", {git, "https://github.com/mojombo/mustache.erl.git", {tag, "v0.1.1"}}},
% event framework for test cases
{goldrush, "~>0.1.8"}
]}]},
{docs, [{deps, [{edown, "0.7.0"}]}]},
{eqc, [{erl_opts, [nowarn_export_all, {d, 'EQC'}, {d, 'TEST'}]}, {deps, [meck]}, {plugins, [{rebar_eqc, "~>0.1.0"}]}]},
{prod, [{relx, [{dev_mode, false}]}]},
{lint, [
{plugins, [
{rebar3_lint, {git, "https://github.com/project-fifo/rebar3_lint.git", {tag, "0.1.4"}}}
]}
]}
]}.