forked from heroku/vegur
-
Notifications
You must be signed in to change notification settings - Fork 1
/
rebar.config
30 lines (27 loc) · 825 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
25
26
27
28
29
30
{erl_opts, [debug_info]}.
{edoc_opts, [{dir, "edoc"}]}.
{deps,
[{ranch, "1.6.1"}
,{cowlib, "2.5.1"}
,{cowboyku, "",
{git, "https://github.com/heroku/cowboyku.git", {branch, "master"}}}
,{ranch_proxy_protocol, "2.1.0"}
,{uuid, "",
{git, "https://github.com/okeuday/uuid.git", {tag, "v1.5.1.1"}}}
,{erequest_id, "",
{git, "https://github.com/heroku/erequest_id.git", {tag, "0.2.2"}}}
,{midjan, "",
{git, "https://github.com/heroku/midjan.git", {tag, "1.0.0"}}}
]}.
{dialyzer, [{warnings, [no_opaque]}]}.
{profiles, [
{test, [
{erl_opts, [nowarn_export_all]},
{deps, [
{websocket_client,
{git, "https://github.com/jeremyong/websocket_client.git", {ref, "9a6f65d"}}}
,{meck,
{git, "https://github.com/eproxus/meck.git", {branch, "master"}}}
]}
]}
]}.