forked from witeman/openpoker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrebar.config
24 lines (24 loc) · 938 Bytes
/
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
%-*-mode:erlang-*-
{erl_opts,[debug_info,{parse_transform,lager_transform}]}.
{deps, [
{lager, ".*",
{git, "git://github.com/basho/lager.git", "master"}},
{mochiweb, ".*",
{git, "git://github.com/mochi/mochiweb.git", "master"}},
{ibrowse,".*",
{git,"git://github.com/cmullaparthi/ibrowse.git","master"}}
]}.
{cover_enabled,true}.
{eunit_opts,[verbose,{report,{eunit_surefire,[{dir,"."}]}}]}.
{template_dir, "support/templates/"}.
{dialyzer_opts, [{warnings, [no_return,
no_unused,
no_improper_lists,
no_fun_app,
no_match,
no_opaque,
no_fail_call,
error_handling,
race_conditions,
behaviours,
unmatched_returns]}]}.