forked from benoitc/couchbeam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rebar.config
35 lines (27 loc) · 1.01 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
32
33
34
35
%%-*- mode: erlang -*-
{erl_opts, [debug_info]}.
{deps, [
{jsx, "2.8.0"},
{hackney, "1.6.4"}
]}.
{profiles, [{docs, [
{deps, [
{edown,
{git, "https://github.com/uwiger/edown.git",
{tag, "0.7"}}}
]},
{edoc_opts, [{doclet, edown_doclet},
{packages, false},
{subpackages, true},
{top_level_readme,
{"./README.md", "http://github.com/benoitc/couchbeam"}}]}
]},
{test, [
{cover_enabled, true},
{eunit_opts, [verbose]},
{deps, [
{oauth,
{git, "https://github.com/barrel-db/erlang-oauth.git",
{branch, "master"}}}
]}]}
]}.