Current section
Files
Jump to
Current section
Files
prometheus_httpd
rebar.config
rebar.config
%% -*- mode: erlang -*-
{erl_opts, [debug_info]}.
{plugins, [{coveralls, {git, "https://github.com/markusn/coveralls-erl", "master"}},
{rebar3_elvis_plugin, {git, "https://github.com/deadtrickster/rebar3_elvis_plugin.git", "master"}}]}.
{provider_hooks, [{pre, []},
{post, []}]}.
{post_hooks, []}.
{deps, [{prometheus, "3.1.1"},
{accept, "0.3.0"}]}.
{shell, [{apps, []}]}.
{cover_enabled, true}.
{cover_export_enabled, true}.
{cover_excl_mods, []}.
{coveralls_coverdata , "_build/test/cover/eunit.coverdata"}.
{coveralls_service_name , "travis-ci"}.
{xref_extra_paths,[]}.
{xref_checks,[undefined_function_calls,
undefined_functions,
locals_not_used,
deprecated_function_calls,
deprecated_functions]}.
{profiles, [{docs, [{deps, [{edown, "0.8.1"}]},
{edoc_opts,
[{doclet, edown_doclet},
{dir, "doc"},
{subpackages, true},
{overview, "doc/overview.md"},
{top_level_readme,
{"./README.md",
"https://github.com/deadtrickster/prometheus_httpd"}}]}]},
{benchmark, [{src_dirs, ["src", "benchmark"]},
{deps, [{'erlang-color',
{git, "https://github.com/julianduque/erlang-color", {branch, "master"}}}]}]}]}.