Current section

Files

Jump to
kafe rebar.config
Raw

rebar.config

{erl_opts, [debug_info, warn_export_vars, warn_shadow_vars, warn_obsolete_guard]}.
{shell, [{config, "config/kafe.config"}]}.
{plugins, [rebar3_elixir, rebar3_hex]}.
{elixir_bindings, [kafe, kafe_consumer]}.
{deps, [
{lager, "~> 3.2.0"},
{bucs, "~> 0.1.0"},
{doteki, "~> 0.1.1"},
{poolgirl, "~> 0.1.0"},
{bristow, "~> 0.1.0"}
]}.
{eunit_opts, [
verbose, {report, {eunit_surefire, [{dir, "test/eunit"}]}}
]}.
{pre_hooks, [{eunit, "mkdir -p test/eunit"}]}.
{profiles, [
{test, [
{deps, [meck]}
]},
{doc, [
{deps, [
{edown, {git, "https://github.com/botsunit/edown.git", {branch, "master"}}}
]},
{edoc_opts, [
{doclet, edown_doclet}
, {app_default, "http://www.erlang.org/doc/man"}
, {source_path, ["src"]}
, {overview, "overview.edoc"}
, {stylesheet, ""}
, {image, ""}
, {top_level_readme, {"./README.md", "https://github.com/botsunit/kafe"}}
]}
]}
]}.