forked from refuge/fubar
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrebar.config
60 lines (47 loc) · 1.38 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
%% -*- mode: erlang;erlang-indent-level: 4;indent-tabs-mode: nil -*-
%% ex: ts=4 sw=4 ft=erlang et
{erl_opts, [
debug_info,
fail_on_warning,
warn_bif_clash,
warn_deprecated_function,
warn_export_all,
warn_export_vars,
warn_exported_vars,
warn_obsolete_guard,
warn_shadow_vars,
warn_unused_function,
warn_unused_import,
warn_unused_record,
warn_unused_vars,
{platform_define, "(linux|freebsd|darwin)", 'HAVE_SENDFILE'},
{parse_transform, lager_transform},
{lager_truncation_size, 256}
]}.
{require_otp_vsn, "R16|17"}.
{deps_dir, ["deps"]}.
{libs_dir, ["deps/", "."]}.
{sub_dirs, ["rel"]}.
{deps,
[
%% logging library
{lager, ".*", {git, "https://github.com/basho/lager.git",
{tag, "2.0.3"}}},
%% Process Groups interface similar to pg2
{cpg, ".*", {git, "https://github.com/okeuday/cpg.git",
{tag, "v1.3.2.2"}}},
%% UUID lib
{uuid, ".*", {git, "https://github.com/okeuday/uuid.git",
{tag, "v1.3.2"}}},
%% BASE32 lib
{base32, ".*", {git, "https://github.com/refuge/base32_erlang.git",
{tag, "master"}}},
%% HTTP API
{cowboy, ".*", {git, "https://github.com/extend/cowboy.git",
{tag, "1.0.0"}}}
]
}.
{cover_enabled, true}.
{eunit_opts, [verbose, {report, {eunit_surefire, [{dir, "."}]}}]}.
{ct_use_short_names, true}.
{ct_extra_params, ""}.