Current section

Files

Jump to
loise rebar.config
Raw

rebar.config

{deps, [
{lutil, {git, "https://github.com/lfex/lutil.git", {tag, "0.10.0-rc2"}}},
{color, {git, "https://github.com/julianduque/erlang-color.git", {tag, "v0.2.0"}}}
]}.
{plugins, [
{'lfe-compile', {git, "https://github.com/lfe-rebar3/compile.git", {tag, "0.8.0-rc1"}}}
]}.
{provider_hooks, [{pre, [{compile, {lfe, compile}}]}]}.
{profiles, [
%% Alternatively, you can use the Gitlab mirror with the following:
%% $ rebar3 as gitlab compile
{gitlab, [
{deps, [
%% XXX HTTPS for this repo is currently broken
%%{lutil, {git, "https://gitlab.com/lfex/lutil.git", {tag, "0.10.0-rc2"}}}]},
{lutil, {git, "git@gitlab.com:lfex/lutil.git", {tag, "0.10.0-rc2"}}}]},
{plugins, [
{'lfe-compile', {git, "https://gitlab.com/lfe-rebar3/compile.git", {tag, "0.8.0-rc1"}}}]}
]},
%% Or use Hex.pm instead with:
%% $ rebar3 as hexpm compile
{hexpm, [
{deps, [
{lutil, "0.10.0-rc2"},
{erlang_color, "0.2.0"}
]},
{plugins, [
{rebar3_lfe_compile, "0.8.0-rc1"}
]}
]},
{dev, [
{deps, [
{lfe, {git, "https://github.com/rvirding/lfe.git", {tag, "v1.2.0"}}}
]},
{plugins, [
{'lfe-version', {git, "https://github.com/lfe-rebar3/version.git", {tag, "0.5.0-rc1"}}}
%%{'lfe-clean', {git, "https://github.com/lfe-rebar3/clean.git", {tag, "0.2.1"}}}
]}
]},
{test, [
{eunit_opts, [verbose]},
{eunit_compile_opts, [{src_dirs, ["src", "test"]}]},
{deps, [
{ltest, {git, "https://github.com/lfex/ltest.git", {tag, "0.10.0-rc1"}}}]},
{plugins, [
{'lfe-test', {git, "https://github.com/lfe-rebar3/test.git", {tag, "0.4.0-rc1"}}}]}
]},
{doc, [
{plugins, [
{lodox, {git, "https://github.com/lfe-rebar3/lodox.git", {tag, "0.12.14"}}}]},
{lodox, [
{apps, [
{loise, [
{'source-uri', "https://github.com/lfex/loise/blob/{version}/{filepath}#L{line}"},
{'output-path', "docs/master/current/api"}]}]}
]}
]}
]}.