2015-09-11 23:26:37 +00:00
|
|
|
%% -*- mode: erlang -*-
|
|
|
|
|
|
|
|
{erl_opts, [debug_info]}.
|
|
|
|
|
2014-04-24 04:47:45 +00:00
|
|
|
{deps, [
|
2015-09-11 23:26:37 +00:00
|
|
|
{lfe, {git, "git://github.com/rvirding/lfe", {tag, "1.0"}}}
|
|
|
|
]}.
|
|
|
|
|
|
|
|
{plugins, [
|
|
|
|
{'lfe-compile', {git, "https://github.com/lfe-rebar3/compile.git", {tag, "0.4.0"}}}
|
|
|
|
]}.
|
|
|
|
|
|
|
|
{provider_hooks, [
|
|
|
|
{pre, [{compile, {lfe, compile}}]}
|
|
|
|
]}.
|
|
|
|
|
|
|
|
{profiles, [
|
|
|
|
{dev, [
|
|
|
|
{plugins, [
|
|
|
|
{'lfe-version', ".*", {git, "https://github.com/lfe-rebar3/version.git", {tag, "0.4.0"}}},
|
|
|
|
{'lfe-repl', ".*", {git, "https://github.com/lfe-rebar3/repl.git", {tag, "0.2.1"}}},
|
|
|
|
{'lfe-clean', ".*", {git, "https://github.com/lfe-rebar3/clean.git", {tag, "0.2.1"}}}
|
|
|
|
]}
|
|
|
|
]},
|
|
|
|
|
|
|
|
{test, [
|
|
|
|
{eunit_compile_opts, [
|
|
|
|
{src_dirs, ["test", "src"]}
|
|
|
|
]},
|
|
|
|
{deps, [
|
|
|
|
{ltest, ".*", {git, "git://github.com/lfex/ltest.git", {tag, "0.8.0"}}}]}
|
|
|
|
]}
|
2014-04-24 04:47:45 +00:00
|
|
|
]}.
|