Skip to content

Commit

Permalink
Update rebar config and bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
arpunk committed Jul 15, 2017
1 parent 2d059cb commit 76732aa
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 40 deletions.
35 changes: 24 additions & 11 deletions rebar.config
Original file line number Diff line number Diff line change
@@ -1,15 +1,28 @@
{erl_opts, [debug_info]}.
{erl_opts, [debug_info]}.

{eunit_compile_opts, [{src_dirs, ["src", "test"]}]}.
{deps, [lfe, proper]}.

{provider_hooks, [{pre, [{compile, {lfe, compile}}]}]}.
{plugins, [
{'lfe-compile', "0.8.0-rc3", {pkg, rebar3_lfe_compile}}
]}.

{deps,
[{lfe, {git, "git://github.com/rvirding/lfe", {tag, "0.10.1"}}},
{ltest, {git, "git://github.com/lfex/ltest", {tag, "0.7.0"}}},
{proper, {git, "git://github.com/manopapad/proper", {branch, "master"}}}]}.
{provider_hooks, [
{pre, [{compile, {lfe, compile}}]}
]}.

{plugins,
[{'lfe-compile',
{git, "git://github.com/lfe-rebar3/compile.git",
{tag, "0.2.1"}}}]}.
{profiles, [
{test, [
{eunit_compile_opts, [
{src_dirs, ["test", "src"]}
]},
{ct_compile_opts, [
{src_dirs, ["test", "src"]}
]},
{deps, [ltest]}]},

{doc, [
{plugins, [
{lodox, {git, "https://github.com/lfe-rebar3/lodox.git", {tag, "0.16.2"}}}
]}
]}
]}.
36 changes: 8 additions & 28 deletions rebar.lock
Original file line number Diff line number Diff line change
@@ -1,28 +1,8 @@
[{<<"clj">>,
{git,"git://github.com/lfex/clj.git",
{ref,"2184d0f1459922145b432cfe19ac6147169383d7"}},
1},
{<<"color">>,
{git,"git://github.com/julianduque/erlang-color.git",
{ref,"e60f6302f795220f5f0bee86391ffee5274edec0"}},
1},
{<<"kla">>,
{git,"git://github.com/lfex/kla.git",
{ref,"e9ed980aec9c18b67a8b5f9c22cfebc778282d04"}},
2},
{<<"lfe">>,
{git,"git://github.com/rvirding/lfe",
{ref,"d7bc80da04aedd0a607f17d8d149eba363872b4b"}},
0},
{<<"ltest">>,
{git,"git://github.com/lfex/ltest",
{ref,"dd2256a315b107cc0456d82ba378f0a4fbd6751a"}},
0},
{<<"lutil">>,
{git,"git://github.com/lfex/lutil.git",
{ref,"14fb9f5c5c6360ad7169d9bf68907747b40c0d36"}},
1},
{<<"proper">>,
{git,"git://github.com/manopapad/proper",
{ref,"1b773eeb47cb2c3116d78bdf681505703b762eee"}},
0}].
{"1.1.0",
[{<<"lfe">>,{pkg,<<"lfe">>,<<"1.2.0">>},0},
{<<"proper">>,{pkg,<<"proper">>,<<"1.2.0">>},0}]}.
[
{pkg_hash,[
{<<"lfe">>, <<"257708859C0A6949F174CECEE6F08BB5D6F08C0F97EC7B75C07072014723ECBC">>},
{<<"proper">>, <<"1466492385959412A02871505434E72E92765958C60DBA144B43863554B505A4">>}]}
].
2 changes: 1 addition & 1 deletion src/propl.app.src
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
[{description, "An LFE wrapper for PropEr."},
{vsn, "0.1.0"},
{registered, []},
{applications, [kernel, stdlib]},
{applications, [kernel, stdlib, proper]},
{env,[]},
{modules, []},

Expand Down

0 comments on commit 76732aa

Please sign in to comment.