From 4ff52d991eb1240acbe82859d643295076f90727 Mon Sep 17 00:00:00 2001 From: Louis-Philippe Gauthier Date: Wed, 15 Jun 2016 08:05:21 -0400 Subject: Add support for cover_excl_mods --- rebar.config.sample | 3 +++ 1 file changed, 3 insertions(+) (limited to 'rebar.config.sample') diff --git a/rebar.config.sample b/rebar.config.sample index f57f8dc..cc027f9 100644 --- a/rebar.config.sample +++ b/rebar.config.sample @@ -57,6 +57,9 @@ %% is `false' {cover_enabled, false}. +%% Modules to exclude from cover +{cover_excl_mods, []}. + %% Options to pass to cover provider {cover_opts, [verbose]}. -- cgit v1.1 From c8ec1546e5aa0a5b5aafad7d45d754b6464c2d04 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Serre?= Date: Sat, 23 Jul 2016 19:45:46 +0200 Subject: template_dir option was forgotten in documentation plus recurse in directory added --- rebar.config.sample | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'rebar.config.sample') diff --git a/rebar.config.sample b/rebar.config.sample index f57f8dc..54f32b2 100644 --- a/rebar.config.sample +++ b/rebar.config.sample @@ -128,7 +128,8 @@ %% Paths to miscellaneous Erlang files to compile for an app %% without including them in its modules list {extra_src_dirs, []}. - +%% Path where custom rebar3 templates could be found +{template_dir, []}. %% == EDoc == -- cgit v1.1 From 0b277cc10e5fa56c773a4f734930253ac9e4f2be Mon Sep 17 00:00:00 2001 From: Maxim Philippov Date: Sat, 22 Sep 2018 22:39:49 +0300 Subject: Fix sample config punctuation. --- rebar.config.sample | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'rebar.config.sample') diff --git a/rebar.config.sample b/rebar.config.sample index be3da71..c255e49 100644 --- a/rebar.config.sample +++ b/rebar.config.sample @@ -144,7 +144,7 @@ %% == Escript == %% name of the main OTP application to boot -{escript_main_app, application} +{escript_main_app, application}. %% Name of the resulting escript executable {escript_name, "application"}. %% apps (other than main and deps) to be included @@ -158,7 +158,7 @@ %% == EUnit == %% eunit:test(Tests) -{eunit_tests, [{application, rebar3}]} +{eunit_tests, [{application, rebar3}]}. %% Options for eunit:test(Tests, Opts) {eunit_opts, [verbose]}. %% Additional compile options for eunit. erl_opts is also used @@ -198,7 +198,7 @@ %% Only clean, ct, compile, eunit, release, and tar can be hooked around %% runs 'clean' before 'compile' -{provider_hooks, [{pre, [{compile, clean}]}]} +{provider_hooks, [{pre, [{compile, clean}]}]}. %% == Releases == -- cgit v1.1