-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathrebar.config
40 lines (35 loc) · 1.45 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, warn_export_vars, warn_shadow_vars, warn_obsolete_guard]}.
{plugins, [
{rebar3_elixir, "~> 0.1.2"},
rebar3_hex
]}.
{deps, [
{lager, "~> 3.2.0"},
{pt_helpers, {git, "https://github.com/emedia-project/pt_helpers.git", {branch, "master"}}},
{doteki, "~> 1.0.5"},
{bucs, "~> 1.0.6"},
{texas_adapter, {git, "https://github.com/emedia-project/texas_adapter.git", {branch, "master"}}}
]}.
{eunit_opts, [
verbose, {report, {eunit_surefire, [{dir, "test/eunit"}]}}
]}.
{pre_hooks, [{eunit, "mkdir -p test/eunit"}]}.
{profiles, [
{test, [
{deps, []}
]},
{doc, [
{deps, [
{edown, {git, "https://github.com/botsunit/edown.git", {branch, "master"}}}
]},
{edoc_opts, [
{doclet, edown_doclet}
, {app_default, "http://www.erlang.org/doc/man"}
, {source_path, ["src"]}
, {overview, "overview.edoc"}
, {stylesheet, ""}
, {image, ""}
, {top_level_readme, {"./README.md", "https://github.com/emedia-project/texas"}}
]}
]}
]}.