summaryrefslogtreecommitdiff
path: root/priv/templates/lib.template
diff options
context:
space:
mode:
authorFred Hebert <mononcqc@ferd.ca>2014-11-10 19:03:25 +0000
committerFred Hebert <mononcqc@ferd.ca>2014-11-10 22:37:09 +0000
commitc832b567dba73ddbed961b265f2018b3f2cb45ae (patch)
treee82b6bba0a1e6e68c17adeb185cb5fad399b3a4c /priv/templates/lib.template
parente202367322b7ce155379196f42a009cf5bfa7e22 (diff)
Redo templates with docs and whatnot
This totally breaks compatibility with rebar2, and maybe it shouldn't have.
Diffstat (limited to 'priv/templates/lib.template')
-rw-r--r--priv/templates/lib.template11
1 files changed, 11 insertions, 0 deletions
diff --git a/priv/templates/lib.template b/priv/templates/lib.template
new file mode 100644
index 0000000..3f35945
--- /dev/null
+++ b/priv/templates/lib.template
@@ -0,0 +1,11 @@
+{description, "OTP Library application (no processes)"}.
+{variables, [
+ {appid, "mylib", "Name of the OTP library application"},
+ {desc, "An OTP library", "Short description of the app"}
+]}.
+{template, "mod.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, "README.md.dtl", "README.md"}.