forked from uwiger/gproc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrebar.config
More file actions
30 lines (27 loc) · 1.15 KB
/
rebar.config
File metadata and controls
30 lines (27 loc) · 1.15 KB
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
%% -*- erlang -*-
{erl_opts, [debug_info]}.
{deps, [
{edown, ".*", {git, "https://github.com/uwiger/edown.git", "HEAD"}},
{gen_leader, ".*",
{git, "https://github.com/garret-smith/gen_leader_revival.git", "HEAD"}}
]}.
{dialyzer_opts, [{warnings, [no_unused,
no_improper_lists, no_fun_app, no_match,
no_opaque, no_fail_call,
error_handling, no_match,
unmatched_returns,
behaviours, underspecs]}]}.
{profiles, [
{doc, [
{deps, [
{edown, ".*",
{git, "https://github.com/uwiger/edown.git", "HEAD"}}
]}
, {edoc_opts, [{doclet, edown_doclet},
{app_default, "http://www.erlang.org/doc/man"},
{top_level_readme,
{"./README.md",
"http://github.com/uwiger/gproc"}}]}
]}
]}.
{shell, [{apps, [gproc]}]}.