diff options
author | Tristan Sloughter <tristan.sloughter@gmail.com> | 2014-11-10 19:35:10 -0600 |
---|---|---|
committer | Tristan Sloughter <tristan.sloughter@gmail.com> | 2014-11-10 19:35:10 -0600 |
commit | 022ffdf6cb7fdf77f5bc3e3d2ecbe715a9b84c7a (patch) | |
tree | c70c4a6b9065b0132e785dcf15b90f9833577c7f /priv/templates/app.template | |
parent | e202367322b7ce155379196f42a009cf5bfa7e22 (diff) | |
parent | 392abf148122be020f3955005497d488d3f881fd (diff) |
Merge pull request #28 from tsloughter/templates-redux
Redo templates with docs and whatnot
Diffstat (limited to 'priv/templates/app.template')
-rw-r--r-- | priv/templates/app.template | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/priv/templates/app.template b/priv/templates/app.template new file mode 100644 index 0000000..78374af --- /dev/null +++ b/priv/templates/app.template @@ -0,0 +1,11 @@ +{description, "OTP Application"}. +{variables, [ + {name, "mylib", "Name of the OTP application"}, + {desc, "An OTP application", "Short description of the app"} +]}. +{template, "app.erl.dtl", "src/{{name}}_app.erl"}. +{template, "otp_app.app.src.dtl", "src/{{name}}.app.src"}. +{template, "rebar.config.dtl", "rebar.config"}. +{template, "gitignore.dtl", ".gitignore"}. +{template, "LICENSE.dtl", "LICENSE"}. +{template, "README.md.dtl", "README.md"}. |