-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathrebar.config
More file actions
33 lines (28 loc) · 1.42 KB
/
rebar.config
File metadata and controls
33 lines (28 loc) · 1.42 KB
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
%% -*- mode: erlang -*-
%% -*- tab-width: 4;erlang-indent-level: 4;indent-tabs-mode: nil -*-
%% ex: ts=4 sw=4 ft=erlang et
{deps,
[
{ibrowse, ".*",
%% Pin here, becase 555f707 (pr #155) introduces an ipv6 bug we've not fixed
{git, "https://github.com/cmullaparthi/ibrowse", {ref, "c97136cfb61fcc6f39d4e7da47372a64f7fca04e"}}},
{lager, ".*",
{git, "https://github.com/erlang-lager/lager", {ref, "a140ea935eae9149bb35234bb40f6acf1c69caa1"}}},
{pooler, ".*", %% use a catch all regex and peg with a tag if neded
{git, "https://github.com/chef/pooler", {branch, "master"}}}
]}.
%% Add dependencies that are only needed for development here. These
%% dependencies will be hidden from upstream projects using this code
%% as a dependency.
{profiles, [{test, [{deps,
[
{meck, ".*", {git, "https://github.com/eproxus/meck", {ref, "06192a984750070ace33b60a492ca27ec9bc6806"}}},
{observer_cli, ".*",
{git, "https://github.com/zhongwencool/observer_cli", {ref, "baa70569bccc5508e9839e20768540ef3cdca016"}}},
{eper, ".*",
{git, "https://github.com/massemanet/eper", {ref, "17b0f97ea8287b72e8ebbe7132214db182ff1a1d"}}}
]}]}
]}.
{erl_opts, [{parse_transform, lager_transform},
warnings_as_errors]}.
{cover_enabled, true}.