summaryrefslogtreecommitdiff
path: root/src/rebar_erlydtl_compiler.erl
diff options
context:
space:
mode:
Diffstat (limited to 'src/rebar_erlydtl_compiler.erl')
-rw-r--r--src/rebar_erlydtl_compiler.erl18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/rebar_erlydtl_compiler.erl b/src/rebar_erlydtl_compiler.erl
index 7d90ada..88ffb96 100644
--- a/src/rebar_erlydtl_compiler.erl
+++ b/src/rebar_erlydtl_compiler.erl
@@ -94,7 +94,7 @@
%% ]}.
-module(rebar_erlydtl_compiler).
--behaviour(rebar_provider).
+-behaviour(provider).
-export([init/1,
do/1]).
@@ -113,14 +113,14 @@
-spec init(rebar_state:t()) -> {ok, rebar_state:t()}.
init(State) ->
- State1 = rebar_state:add_provider(State, #provider{name = ?PROVIDER,
- provider_impl = ?MODULE,
- bare = false,
- deps = ?DEPS,
- example = "rebar erlydtl compile",
- short_desc = "Compile erlydtl templates.",
- desc = "",
- opts = []}),
+ State1 = rebar_state:add_provider(State, providers:create([{name, ?PROVIDER},
+ {module, ?MODULE},
+ {bare, false},
+ {deps, ?DEPS},
+ {example, "rebar erlydtl compile"},
+ {short_desc, "Compile erlydtl templates."},
+ {desc, ""},
+ {opts, []}])),
{ok, State1}.
do(Config) ->