-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrebar.config
66 lines (59 loc) · 1.31 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
%% -*- mode: erlang -*-
{erl_opts, [warnings_as_errors, debug_info]}.
{deps, []}.
{plugins,
[
{rebar3_proper,
{git, "https://github.com/ferd/rebar3_proper.git"},
{ref, "e1a9cbe193d2807737796c53b37bcfb14a346842"}}
% rebar3_proper
% , rebar3_auto
% , rebar3_ex_doc % See https://github.com/starbelly/rebar3_ex_doc
% , rebar3_hex
]}.
{ex_doc, [
{source_url, <<"https://github.com/sstrollo/jeysn">>},
{extras, [<<"README.md">>, <<"LICENSE">>]},
{main, <<"readme">>}
]}.
{edoc_opts, [{preprocess, true}
% , {doclet, edoc_doclet_chunks}
% , {layout, edoc_layout_chunks}
, {dir, "_build/docs/lib/jeysn/doc"}
% , {dir, "_build/default/lib/jeysn/doc"}
]}.
{pre_hooks,
[
{compile,
"/bin/sh -c '"
"if [ x\"${MAKE}\" = x ]; then"
" make -C c_src ; "
"else"
" ${MAKE} -C c_src ; "
"fi"
"'"}
]
}.
{post_hooks,
[
{clean,
"/bin/sh -c '"
"if [ x\"${MAKE}\" = x ]; then"
" make -C c_src clean ;"
"else"
" ${MAKE} -C c_src clean ; "
"fi"
"'"}
]
}.
{profiles,
[{test, [
{deps,
[
{proper,
{git, "https://github.com/proper-testing/proper.git",
{ref, "a5ae5669f01143b0828fc21667d4f5e344aa760b"}}}
% {proper, "1.4.0"}
]}
]}
]}.