mirror of
https://github.com/valitydev/riak_test.git
synced 2024-11-06 08:35:22 +00:00
d284dcfc22
Intercepts provide the ability to easily and efficiently intercept function calls. Giving the ability to change the code being executed as well as affect local and global state.
28 lines
1.2 KiB
Erlang
28 lines
1.2 KiB
Erlang
{require_otp_vsn, "R13B04|R14|R15"}.
|
|
{cover_enabled, true}.
|
|
{edoc_opts, [{preprocess, true}]}.
|
|
%%{edoc_opts, [{doclet, edown_doclet}, {pretty_printer, erl_pp}]}.
|
|
%%{edoc_opts, [{doclet, my_layout}, {pretty_printer, erl_pp}]}.
|
|
%%{edoc_opts, [{layout, my_layout}, {file_suffix, ".xml"}, {pretty_printer, erl_pp}]}.
|
|
{erl_opts, [{src_dirs, [src, intercepts]},
|
|
warnings_as_errors, {parse_transform, lager_transform}]}.
|
|
|
|
{deps, [
|
|
{lager, ".*", {git, "git://github.com/basho/lager"}},
|
|
{getopt, ".*", {git, "git://github.com/jcomellas/getopt", {tag, "v0.4"}}},
|
|
{meck, ".*", {git, "git://github.com/eproxus/meck"}},
|
|
{mapred_verify, ".*", {git, "git://github.com/basho/mapred_verify"}},
|
|
{riakc, "1.3.1", {git, "git://github.com/basho/riak-erlang-client", {tag, "1.3.1"}}},
|
|
{riakhttpc, "1.3.1", {git, "git://github.com/basho/riak-erlang-http-client", {tag, "1.3.1"}}},
|
|
{kvc, "1.2.1", {git, "https://github.com/etrepum/kvc", {tag, "v1.2.1"}}}
|
|
]}.
|
|
|
|
{escript_incl_apps, [lager, getopt, riakhttpc, riakc, ibrowse, mochiweb, kvc]}.
|
|
|
|
{plugin_dir, "src"}.
|
|
{plugins, [rebar_riak_test_plugin]}.
|
|
{riak_test, [
|
|
{test_paths, ["tests"]},
|
|
{test_output, "ebin"}
|
|
]}.
|