Current section

Files

Jump to
simple_bridge rebar.config
Raw

rebar.config

% -*- Erlang -*-
%% vim: ts=4 sw=4 et ft=erlang
{erl_opts, [
debug_info
]}.
{cover_enabled, true}.
{xref_checks, [undefined_function_calls]}.
{pre_hooks,[
{"linux|bsd|darwin|solaris", compile, "priv/compat.escript"},
{"win32", compile, "escript.exe priv\\compat.escript"}
]}.
{project_plugins, [rebar3_ex_doc]}.
{hex, [{doc, ex_doc}]}.
{ex_doc, [
{source_url, <<"https://github.com/nitrogen/simple_bridge">>},
{extras, [<<"README.md">>, <<"CHANGELOG.md">>, <<"LICENSE.md">>, <<"CONTRIB.md">>]},
{main, <<"readme">>}
]}.
{profiles, [
{cowboy, [
{deps, [ibrowse, cowboy]}
]},
{mochiweb, [
{deps, [ibrowse, mochiweb]}
]},
{inets, [
{deps, [ibrowse, mimetypes]}
]},
{webmachine, [
{deps, [
ibrowse,
{webmachine, {git, "https://github.com/webmachine/webmachine.git", {branch, master}}}
]}
]},
{yaws, [
{deps, [
ibrowse,
{yaws, {git, "https://github.com/erlyaws/yaws", {tag, "yaws-2.1.0"}}}
]}
]}
]}.