1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
-module(rebar_prv_new).
-behaviour(rebar_provider).
-export([init/1,
do/1]).
-include("rebar.hrl").
-define(PROVIDER, new).
-define(DEPS, []).
%% ===================================================================
%% Public API
%% ===================================================================
-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 new <template>",
short_desc = "",
desc = info(create),
opts = []}),
{ok, State1}.
-spec do(rebar_state:t()) -> {ok, rebar_state:t()}.
do(State) ->
case rebar_state:command_args(State) of
[TemplateName] ->
Template = list_to_atom(TemplateName),
rebar_templater:new(Template, "", State),
{ok, State};
[TemplateName, DirName] ->
Template = list_to_atom(TemplateName),
rebar_templater:new(Template, DirName, State),
{ok, State};
[] ->
{ok, State}
end.
%% ===================================================================
%% Internal functions
%% ===================================================================
info(create) ->
io_lib:format(
"Create skel based on template and vars.~n"
"~n"
"Valid command line options:~n"
" template= [var=foo,...]~n", []);
info(create_app) ->
io_lib:format(
"Create simple app skel.~n"
"~n"
"Valid command line options:~n"
" [appid=myapp]~n", []);
info(create_lib) ->
io_lib:format(
"Create simple lib skel.~n"
"~n"
"Valid command line options:~n"
" [libid=mylib]~n", []);
info(create_node) ->
io_lib:format(
"Create simple node skel.~n"
"~n"
"Valid command line options:~n"
" [nodeid=mynode]~n", []);
info(list_templates) ->
io_lib:format("List available templates.~n", []).
|