-
-
Notifications
You must be signed in to change notification settings - Fork 232
/
rebar.config
30 lines (27 loc) · 1.1 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
%% -*- erlang -*-
{erl_opts, [debug_info]}.
{deps, [
{gen_leader, ".*",
{git, "https://github.com/garret-smith/gen_leader_revival.git", "HEAD"}}
]}.
{dialyzer, [{plt_apps, all_deps},
{plt_extra_apps, [mnesia, runtime_tools, gen_leader]},
{warnings, [no_unused,
no_improper_lists, no_fun_app, no_match,
no_opaque, no_fail_call,
error_handling, no_match,
unmatched_returns, underspecs]}]}.
{profiles, [
{edown, [
{deps, [
{edown, "0.9.1"}
]}
, {edoc_opts, [{doclet, edown_doclet},
{app_default, "http://www.erlang.org/doc/man"},
{branch, "master"},
{top_level_readme,
{"./README.md",
"http://github.com/uwiger/gproc", "master"}}]}
]}
]}.
{shell, [{apps, [gproc]}]}.