-
Notifications
You must be signed in to change notification settings - Fork 10
/
rebar_dev.config
70 lines (59 loc) · 1.76 KB
/
rebar_dev.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
61
62
63
64
65
66
67
68
69
70
%%-*- mode: erlang -*-
%%
%% This Source Code Form is subject to the terms of the Mozilla Public
%% License, v. 2.0. If a copy of the MPL was not distributed with this
%% file, You can obtain one at http://mozilla.org/MPL/2.0/.
%%
{lib_dirs, ["deps"]}.
{src_dirs, ["./src"]}.
{erl_opts,
[{i, "include"},
{i, "deps"},
{src_dirs, ["src"]},
debug_info
]
}.
{cover_enabled, true}.
{erl_opts, [fail_on_warning,
warn_unused_vars,
warn_export_all,
warn_shadow_vars,
warn_unused_import,
warn_unused_function,
warn_bif_clash,
warn_unused_record,
warn_deprecated_function,
warn_obsolete_guard,
warn_export_vars,
warn_exported_vars,
%%warn_untyped_record,
% warn_missing_spec,
% strict_validation,
debug_info]}.
{eunit_opts, [
no_tty,
{report, {eunit_progress, [colored, profile]}}
]}.
{deps, [
%% BTREE library
{cbt, ".*", {git, "https://github.com/benoitc/cbt.git",
{tag, "1.2.1"}}},
%% snappy compression
{snappy, ".*",
{git, "https://github.com/fdmanana/snappy-erlang-nif.git",
{branch, "master"}}},
%% lz4 compression
{lz4, ".*", {git, "git://github.com/krestenkrab/erlang-lz4.git",
{branch, "master"}}},
%% eunit console formatter
{eunit_formatters, ".*",
{git, "git://github.com/seancribbs/eunit_formatters",
"master"}},
{edown, ".*",
{git, "git://github.com/uwiger/edown.git", "HEAD"}}
]}.
{edoc_opts, [{application, ["cowdb"]},
{doclet, edown_doclet},
{subpackages, false},
{top_level_readme,
{"./README.md", "http://github.com/refuge/cowdb"}}]}.