-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrebar.config
More file actions
20 lines (17 loc) · 806 Bytes
/
rebar.config
File metadata and controls
20 lines (17 loc) · 806 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{require_otp_vsn, "1[78]"}.
{sub_dirs, ["deps"]}.
{deps,
[{lager, "2.1.1", {git, "https://github.com/basho/lager", {tag, "2.1.1"}}},
{meck, "0.8.2", {git, "https://github.com/eproxus/meck.git", {tag, "0.8.2"}}},
{ct_tty_hook, ".*", {git, "https://github.com/mpmiszczyk/ct_tty_hook.git",
{branch, master}}},
{recon, ".*", {git, "https://github.com/ferd/recon.git", {branch, "master"}}},
{dobby, ".*", {git, "https://github.com/ivanos/dobby_core_lib.git",
{branch, master}}},
{dobby_clib, ".*", {git, "https://github.com/ivanos/dobby_clib.git",
{branch, master}}}]
}.
{cover_enabled, true}.
{erl_opts, [{parse_transform, lager_transform}, debug_info]}.
{edoc_opts, [{preprocess, true}]}.
{ct_extra_params, "-ct_hooks ct_tty_hook"}.