2012-09-03 11:33:40 -05:00
|
|
|
%% -*- mode: Erlang; fill-column: 80; comment-column: 75; -*-
|
|
|
|
|
2012-10-19 18:20:07 -05:00
|
|
|
%% Dependencies ================================================================
|
2012-09-05 17:27:29 -05:00
|
|
|
{deps, [{neotoma, "",
|
2012-10-19 18:20:07 -05:00
|
|
|
{git, "https://github.com/seancribbs/neotoma.git", {branch, master}}},
|
2012-10-19 18:22:03 -05:00
|
|
|
{proper, "", {git, "https://github.com/manopapad/proper.git", {branch, master}}},
|
|
|
|
{rebar_vsn_plugin, ".*", {git, "https://github.com/erlware/rebar_vsn_plugin.git",
|
|
|
|
{branch, "master"}}}]}.
|
2012-09-03 11:33:40 -05:00
|
|
|
|
2012-09-04 20:27:31 -05:00
|
|
|
{erl_first_files, ["ec_dictionary"]}.
|
|
|
|
|
2012-10-19 18:20:07 -05:00
|
|
|
%% Compiler Options ============================================================
|
2012-06-05 17:59:46 -05:00
|
|
|
{erl_opts,
|
|
|
|
[debug_info,
|
2012-09-03 11:33:40 -05:00
|
|
|
warnings_as_errors]}.
|
2012-10-19 18:20:07 -05:00
|
|
|
|
|
|
|
%% EUnit =======================================================================
|
|
|
|
{eunit_opts, [verbose,
|
|
|
|
{report, {eunit_surefire, [{dir, "."}]}}]}.
|
|
|
|
|
|
|
|
{cover_enabled, true}.
|
|
|
|
{cover_print_enabled, true}.
|
2012-10-19 18:22:03 -05:00
|
|
|
|
|
|
|
%% Rebar Plugins ==============================================================
|
|
|
|
{plugins, [rebar_vsn_plugin]}.
|