1
2
3
4
5
6
7
8
9
10
11
|
{description, "Rebar3 plugin"}.
{variables, [
{appid, "myplugin", "Name of the plugin"},
{desc, "A rebar plugin", "Short description of the plugin's purpose"}
]}.
{template, "plugin.erl.dtl", "src/{{appid}}.erl"}.
{template, "otp_lib.app.src.dtl", "src/{{appid}}.app.src"}.
{template, "rebar.config.dtl", "rebar.config"}.
{template, "gitignore.dtl", ".gitignore"}.
{template, "LICENSE.dtl", "LICENSE"}.
{template, "plugin_README.md.dtl", "README.md"}.
|