-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathrebar.config
39 lines (34 loc) · 1.03 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
{erl_opts, [debug_info]}.
{deps, []}.
{cover_enabled, true}.
{cover_opts, [verbose]}.
{ct_opts, [
{ct_hooks, [cth_surefire]},
{keep_logs, 1}
]}.
{project_plugins, [rebar3_ex_doc]}.
{ex_doc, [
{extras, [
{"README.md", #{title => "Overview"}},
{"doc/CLI_REF.md", #{title => "CLI API"}},
{"doc/ARGPARSE_REF.md", #{title => "argparse API"}},
{"doc/examples/escript/simple", #{title => "simple"}},
{"doc/examples/escript/calc", #{title => "calculator"}},
{"doc/examples/escript/erm", #{title => "erm"}},
{"CHANGELOG.md", #{title => "Changelog"}},
{"LICENSE", #{title => "License"}}
]},
{main, "README.md"},
{source_url, "https://github.com/max-au/argparse"},
{output, <<"_build/ex_doc">>},
{source_ref, <<"master">>},
{groups_for_extras, [
{examples, [
<<"doc/examples/escript/simple">>,
<<"doc/examples/escript/calc">>,
<<"doc/examples/escript/erm">>]}
]}
]}.
{hex, [
{doc, #{provider => ex_doc}}
]}.