-
Notifications
You must be signed in to change notification settings - Fork 1
/
rebar.config
35 lines (30 loc) · 1.09 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
{lib_dirs, ["deps"]}.
{cover_enabled, true}.
{eunit_opts, [verbose, {report, {eunit_surefire, [{dir, "."}]}}]}.
{erl_opts, [debug_info, fail_on_warning]}.
{compiler_options, [verbose, report_errors]}.
{require_otp_vsn, "17"}.
{deps, [
{erlydtl, ".*", {git, "git://github.com/evanmiller/erlydtl.git", "master"}},
{mochiweb, ".*", {git, "git://github.com/mochi/mochiweb", {tag, "v2.8.0"}}},
{lager, ".*", {git, "git://github.com/basho/lager", {tag, "2.0.2"}}},
{eredis, ".*", {git, "git://github.com/wooga/eredis", {tag, "v1.0.6"}}},
{uuid, ".*", {git, "git://gitorious.org/avtobiff/erlang-uuid.git", "master"}},
{sync, ".*", {git, "[email protected]:rustyio/sync.git", "master"}}
]}.
{plugins, [rebar_erlydtl_compiler]}.
{erlydtl_opts, [
{compiler_options, [debug_info]},
[
{doc_root, "templates"},
{out_dir, "ebin"},
{source_ext, ".dtl"},
{module_ext, "_dtl"},
{custom_tags_dir, "src/view/lib/tags"},
{default_libraries, [menu, user]},
{libraries, [
{menu, menu_tag},
{user, user_tag}
]}
]
]}.