Current section

Files

Jump to
erllambda rebar.config
Raw

rebar.config

{erl_opts, [debug_info]}.
{deps,
[
jiffy,
lhttpc,
erlcloud
]}.
{plugins,
[
{covertool,
{git, "https://github.com/covertool/covertool.git",
{branch, master}}}
]}.
%% Profiles
{profiles,
[{test,
[{deps,
[
{meck, "0.8.12"},
{cowboy, "2.6.1"},
{uuid, "1.7.4", {pkg, uuid_erl}}]},
{erl_opts, [debug_info, nowarn_export_all, export_all]}]}
]}.
{shell, [
{apps, [erllambda]}
]}.
{ct_opts,
[{logdir, "logs"}]}.
{dialyzer, [
{warnings, [ race_conditions,
no_return,
error_handling
]},
{plt_apps, all_deps},
{plt_extra_apps, [erts, kernel, stdlib]},
{plt_location, local},
{base_plt_apps, [stdlib, kernel]},
{base_plt_location, global}
]}.