Current section
Files
Jump to
Current section
Files
rebar.config
%% Tell emacs to use -*- erlang -*- mode for this file
{deps,
[{parse_trans, "3.4.1"},
{eunit_addons, "1.2.0"}
]}.
{project_plugins, [rebar3_ex_doc]}.
{hex, [{doc, ex_doc}]}.
{ex_doc,
[{extras, ["README.md", "LICENSE"]},
{main, "README.md"},
{source_url, "https://github.com/klajo/mockgyver"}
]}.
{edoc_opts,
[{preprocess, true}]}.
{dialyzer, [{warnings, [unknown]},
{plt_apps, all_deps},
{plt_extra_apps, [syntax_tools, compiler,
parse_trans]}]}.
{profiles,
%% Add the edown dependency (for generating markdown docs) when
%% running with the edown profile ==> make it an optional dependency.
[{edown, [{deps, [edown]},
{edoc_opts, [{doclet, edown_doclet},
{preprocess, true}]}]}]}.