-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathrebar.config
More file actions
31 lines (30 loc) · 893 Bytes
/
rebar.config
File metadata and controls
31 lines (30 loc) · 893 Bytes
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
%% -*- mode: erlang; -*-
%% vim: set ft=erlang :
{lib_dirs,["deps"]}.
{deps, [
{ranch, "0.6.*",
{git, "git://github.com/AgilityTeam/ranch.git", "master"}},
{folsom, ".*",
{git, "git://github.com/boundary/folsom" , "master"}},
{lager, ".*",
{git, "git://github.com/basho/lager.git" , "master"}},
{qdate, ".*",
{git, "git://github.com/choptastic/qdate.git", "master"}}
]}.
{erl_opts,
[
{i, "apps"},
bin_opt_info,
%%native,
%%fail_on_warning,
%%warn_missing_spec,
debug_info,
{parse_transform, lager_transform}
]
}.
{clean_files, ["*.eunit", "ebin/*.beam"]}.
{eunit_opts, [verbose,
{report, {eunit_surefire, [{dir, "."}]}}]}.
{sub_dirs, ["apps/agilitycache", "apps/agilitycache_plugins", "rel"]}.
%% Behaviours:
{erl_first_files, ["apps/agilitycache/src/agilitycache_cache_plugin.erl"]}.