This repository has been archived by the owner on Jul 11, 2023. It is now read-only.
forked from oubiwann/lfest
-
Notifications
You must be signed in to change notification settings - Fork 1
/
rebar.config
53 lines (47 loc) · 1.58 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
{erl_opts, [debug_info]}.
{lfe_first_files, []}.
{deps, [
{lfe, {git, "git://github.com/lfe/lfe.git", {branch, "bleeding-edge"}}},
{lutil, {git, "git://github.com/lfex/lutil.git", {branch, "master"}}},
{yaws, {git, "git://github.com/klacke/yaws.git", {tag, "yaws-2.0.6"}}}
]}.
{plugins, [
{lfe, {git, "git://github.com/lfe/lfe.git", {branch, "bleeding-edge"}}},
{'lfe-compile', {git, "https://github.com/lfe-rebar3/compile.git", {branch, "master"}}}
]}.
{provider_hooks, [{pre, [{compile, {lfe, compile}}]}]}.
{profiles, [
{dev, [
{deps, [
]},
{plugins, [
{'lfe-version', {git, "https://github.com/lfe-rebar3/version.git", {branch, "master"}}},
{'lfe-clean', {git, "https://github.com/lfe-rebar3/clean.git", {branch, "master"}}}
]}
]},
{test, [
{eunit_compile_opts, [
{src_dirs, ["test", "src"]}
]},
{plugins, [
{lfe, {git, "git://github.com/lfe/lfe.git", {branch, "bleeding-edge"}}},
{'lfe-test', {git, "https://github.com/lfe-rebar3/test.git", {branch, "master"}}}
]},
{deps, [
{lfe, {git, "git://github.com/lfe/lfe.git", {branch, "bleeding-edge"}}},
{ltest, {git, "git://github.com/lfex/ltest.git", {branch, "master"}}}
]}
]},
{docs, [
{plugins, [
{lodox, ".*", {git, "https://github.com/quasiquoting/lodox.git", {tag, "0.12.8"}}}
]},
{lodox,
[{apps,
[{exemplar,
[{'source-uri',
"https://github.com/lfex/exemplar/blob/{version}/{filepath}#L{line}"},
{'output-path', "docs/master/current/api"}]}]}
]}
]}
]}.