-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathrebar.config
31 lines (27 loc) · 1.15 KB
/
rebar.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
%%% -*- mode: erlang -*-
{erl_opts,
[
{parse_transform, lager_transform},
{lager_truncation_size, 1024},
{i, "include"},
debug_info,
%% bin_opt_info,
warn_unused_vars,
warn_shadow_vars,
%% warn_unused_import,
warnings_as_errors
]}.
{deps_dir, ["deps"]}.
{ deps
, [ {lager , ".*" , {git, "https://github.com/basho/lager.git" , {tag , "2.0.3"}}}
, {jsx , ".*" , {git, "git://github.com/talentdeficit/jsx.git" , {branch , "master"}}}
, {thrift , ".*" , {git, "https://github.com/dieswaytoofast/thrift.git" , {tag , "0.9.3"}}}
, {proper , ".*" , {git, "https://github.com/manopapad/proper.git" , {branch , "master"}}}
, {poolboy , ".*" , {git, "git://github.com/devinus/poolboy.git" , {tag , "1.5.1"}}}
, {reltool_util , ".*" , {git, "https://github.com/okeuday/reltool_util.git" , {branch , "master"}}}
, {hope , ".*" , {git, "https://github.com/ibnfirnas/hope.git" , {tag , "1.3.0"}}}
, {quintana , ".*" , {git, "https://github.com/puzza007/quintana.git" , {branch , "master"}}}
]
}.
{cover_enabled, true}.
{clean_files, ["test/*.beam"]}.