-
Notifications
You must be signed in to change notification settings - Fork 3
/
rebar.config
40 lines (31 loc) · 1.17 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
%% -*- mode: Erlang; -*-
{erl_opts, [
%% Add debug_info for debugging
debug_info,
%% Lager
{parse_transform, lager_transform},
%% Fail on warning
%% warnings_as_errors,
%% Causes warnings to be emitted for malformed format
%% strings as arguments to io:format and similar functions.
warn_format,
%% Causes a warning to be emitted if the export_all option has also been given.
warn_export_all,
%% Causes warnings to be emitted for all implicitly exported
%% variables referred to after the primitives where they were first defined.
warn_export_vars,
%% Causes warnings to be emitted for "fresh" variables in functional
%% objects or list comprehensions with the same name as some already defined variable.
warn_shadow_vars,
%% Causes warnings to be emitted for calls to old type testing BIFs
warn_obsolete_guard
]}.
%% Dependencies
{deps, [
{lager, "1.2.1",
{git, "git://github.com/basho/lager.git", {tag, "1.2.1"}}},
{ibrowse, "4.0.1",
{git, "git://github.com/cmullaparthi/ibrowse.git", "master"}},
{mochijson2, ".*",
{git, "git://github.com/bjnortier/mochijson2.git", "master"}}
]}.