-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathrebar.config
More file actions
22 lines (20 loc) · 760 Bytes
/
rebar.config
File metadata and controls
22 lines (20 loc) · 760 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
%%-*- mode: erlang -*-
{erl_opts, [
debug_info,
warn_format,
%% warn_export_all,
warn_export_vars,
warn_obsolete_guard,
warn_bif_clash
%% warn_missing_spec,
%% warn_untyped_record
]}.
{deps, [
{meck, ".*", {git, "git://github.com/eproxus/meck.git", "beb8d14e59"}},
{mimetypes, ".*", {git, "git://github.com/spawngrid/mimetypes.git", "e9dfab5aec"}},
{cowboy, ".*", {git, "git://github.com/extend/cowboy.git", "1f9d71c3f5"}},
{jiffy, ".*", {git, "git://github.com/davisp/jiffy.git"}},
{mochiweb, ".*", {git, "git://github.com/mochi/mochiweb.git", ""}}
]}.
{eunit_opts, [verbose, {report,{eunit_surefire,[{dir,"."}]}}]}.
{cover_enabled, true}.