summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Sloughter <t@crashfast.com>2015-06-29 07:46:59 -0500
committerTristan Sloughter <t@crashfast.com>2015-06-29 11:57:42 -0500
commit0f59ccb9bb2481fffe39fa20be31a4da59fd827e (patch)
tree0229d70b826d5f185146283231fb478a58d6f4bd
parent3e19560160b6cf9d03bc820c947b382ce49f5b5c (diff)
formatting of config
-rw-r--r--rebar.config29
1 files changed, 13 insertions, 16 deletions
diff --git a/rebar.config b/rebar.config
index bd0f517..0b117de 100644
--- a/rebar.config
+++ b/rebar.config
@@ -1,12 +1,11 @@
%% -*- mode: erlang;erlang-indent-level: 4;indent-tabs-mode: nil -*-
%% ex: ts=4 sw=4 ft=erlang et
-{deps, [
- {erlware_commons, "0.12.0"},
- {providers, "1.4.1"},
- {getopt, "0.8.2"},
- {bbmustache, "1.0.1"},
- {relx, "3.0.0"}]}.
+{deps, [{erlware_commons, "0.12.0"},
+ {providers, "1.4.1"},
+ {getopt, "0.8.2"},
+ {bbmustache, "1.0.1"},
+ {relx, "3.0.0"}]}.
{escript_name, rebar3}.
{escript_emu_args, "%%! +sbtu +A0\n"}.
@@ -16,20 +15,18 @@
{"priv/templates/*", "."},
{"rebar/include/*", "."}]}.
-{erl_opts,
- [{platform_define, "^[0-9]+", namespaced_types},
- no_debug_info,
- warnings_as_errors]}.
+{erl_opts, [{platform_define, "^[0-9]+", namespaced_types},
+ no_debug_info,
+ warnings_as_errors]}.
{dialyzer_plt_apps, [common_test, dialyzer, eunit, snmp]}.
%% Profiles
-{profiles, [{test,
- [{deps, [
- {meck, "", {git, "https://github.com/eproxus/meck.git", {tag, "0.8.2"}}}
- ]},
- {erl_opts, [debug_info]}
- ]},
+{profiles, [{test, [
+ {deps, [{meck, "0.8.2"}]},
+ {erl_opts, [debug_info]}
+ ]
+ },
{bootstrap, []},