Packages

Rational numbers in Erlang

Current section

Files

Jump to
rationals rebar.config
Raw

rebar.config

{erl_opts, [debug_info]}.
{xref_checks, [
undefined_function_calls, undefined_functions, locals_not_used,
deprecated_function_calls, deprecated_functions
]}.
{dialyzer, [
{warnings, [unknown]}
]}.
{profiles, [
{test, [
{deps, [
{proper, {git, "https://github.com/proper-testing/proper", {tag, "v1.3"}}}
]},
{plugins, [
{rebar3_proper, {git, "https://github.com/ferd/rebar3_proper", {tag, "0.12.0"}}}
]},
{eunit_opts, [verbose]}
]}
]}.
{alias, [
{coverage, [
{proper, "-c"},
{cover, "-v --min_coverage=0"}
]},
{check, [
compile,
xref,
dialyzer,
eunit,
ct,
coverage
]}
]}.