diff options
Diffstat (limited to 'rebar.config')
-rw-r--r-- | rebar.config | 18 |
1 files changed, 7 insertions, 11 deletions
diff --git a/rebar.config b/rebar.config index 74ae226..37f10c5 100644 --- a/rebar.config +++ b/rebar.config @@ -6,16 +6,17 @@ {providers, ".*", {git, "https://github.com/tsloughter/providers.git", {tag, "v1.3.0"}}}, - {erlydtl, ".*", - {git, "https://github.com/erlydtl/erlydtl.git", - {branch, "master"}}}, + {mustache, ".*", + {git, "https://github.com/soranoba/mustache.git", + {tag, "v0.3.0"}}}, {getopt, "", {git, "https://github.com/jcomellas/getopt.git", {branch, "master"}}}]}. +{escript_incl_extra, [{"priv/templates/*", "."}]}. {escript_emu_args, "%%! +sbtu +A0 -noinput\n"}. {escript_incl_apps, - [getopt, erlware_commons, merl, erlydtl, providers, relx]}. + [getopt, erlware_commons, providers, relx]}. %% Compiler Options ============================================================ {erl_opts, @@ -28,13 +29,6 @@ {eunit_opts, [{report, {eunit_surefire, [{dir, "."}]}}]}. -%% Erlydtl ===================================================================== -{erlydtl_opts, [{doc_root, "priv/templates"}, - force_recompile, - {compiler_options, [report, return, debug_info]}]}. - -{provider_hooks, [{pre, [{compile, {erlydtl, compile}}]}]}. - %% Profiles ==================================================================== {profiles, [{dev, [{deps, [{neotoma, ".*", @@ -43,6 +37,8 @@ ] }]}. +{overrides, [{override, mustache, [{deps, []}, {plugins, []}]}]}. + {ct_opts, [{cover_spec, "cover.spec"}, {cover_enabled, true}, {cover_print_enabled, true}]}. |