Current section

Files

Jump to
bucs rebar.config
Raw

rebar.config

{erl_opts, [debug_info, warn_export_vars, warn_shadow_vars, warn_obsolete_guard]}.
{plugins, [rebar3_elixir, rebar3_hex]}.
{deps, []}.
{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/bucs"}}
]}
]}
]}.