forked from for-GET/katt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrebar.config
48 lines (48 loc) · 1.31 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
%%-*- mode: erlang -*-
{lib_dirs, [ ".."
, "deps"
]}.
{erl_opts, [ debug_info
, warn_unused_vars
, warn_shadow_vars
, warn_unused_import
, warn_export_all
, warn_export_vars
, warn_obsolete_guard
, warn_untyped_record
, warnings_as_errors
]}.
{cover_enabled, true}.
{cover_print_enabled, true}.
{xref_checks, [ fail_on_warning
, undefined_function_calls
, deprecated_function_calls
]}.
{deps_dir, [ "deps"
]}.
{deps,
[ { mochijson3
, ".*"
, { git, "git://github.com/tophitpoker/mochijson3.git"
, "1a1c913ac80bb45d3de5fbd74d21e96c45e9e844"
}
}
, { lhttpc
, ".*"
, { git, "git://github.com/waisbrot/lhttpc.git"
, "824a89316d59353181990f5a461157751ca67907"
}
}
, { neotoma
, ".*"
, { git, "git://github.com/seancribbs/neotoma.git"
, {tag, "1.6.1"}
}
}
, { meck
, ".*"
, { git, "https://github.com/eproxus/meck.git"
, {tag, "0.8.2"}}
}
]}.
{pre_hooks, [{compile, "./priv/compile-parser"}]}.