forked from benoitc/couchbeam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrebar_dev.config
34 lines (26 loc) · 843 Bytes
/
rebar_dev.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
%%-*- mode: erlang -*-
{lib_dirs, ["deps"]}.
{erl_opts,
[{i, "include"},
{i, "deps"},
{src_dirs, ["src"]},
debug_info
]
}.
{deps, [
{jsx, ".*", {git, "git://github.com/talentdeficit/jsx.git",
{tag,"v2.1.1"}}},
%% erlang-oauth for oauth authentification
{oauth, ".*", {git,"git://github.com/refuge/erlang-oauth.git",
"master"}},
%% hackney for doing HTTP requests
{hackney, ".*", {git, "git://github.com/benoitc/hackney.git",
{tag, "1.0.4"}}},
{edown, ".*",
{git, "git://github.com/esl/edown.git", "HEAD"}}
]}.
{edoc_opts, [{application, ["couchbeam"]},
{doclet, edown_doclet},
{subpackages, false},
{top_level_readme,
{"./README.md", "http://github.com/benoitc/couchbeam"}}]}.