-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathrebar.config
More file actions
23 lines (19 loc) · 900 Bytes
/
rebar.config
File metadata and controls
23 lines (19 loc) · 900 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{require_otp_vsn, "1[78]"}.
{erl_opts,
[fail_on_warning,
{parse_transform, lager_transform}]}.
{deps_dir, "deps"}.
{deps, [
{lager, ".*", {git, "https://github.com/basho/lager.git", {tag,"2.1.1"}}},
{erl_mnesia, ".*", {git, "https://github.com/ivanos/erl_mnesia.git", {branch,"master"}}},
{dobby_clib, ".*", {git, "https://github.com/ivanos/dobby_clib.git", {branch,"master"}}},
{'iso8601', ".*", {git, "https://github.com/ivanos/erlang_iso8601.git", {tag, "master"}}},
{jiffy, ".*", {git, "https://github.com/davisp/jiffy.git", {tag, "0.14.7"}}},
{meck, ".*", {git, "https://github.com/eproxus/meck.git", {tag, "0.8.2"}}},
{proper, ".*", {git, "https://github.com/manopapad/proper.git", {tag, "master"}}}
]
}.
%% {cover_enabled, true}.
%% {cover_print_enabled, true}.
{eunit_opts, [verbose]}.
{eunit_compile_opts, [{i, "../"}]}.