diff options
author | Fred Hebert <mononcqc@ferd.ca> | 2015-05-12 15:57:28 +0000 |
---|---|---|
committer | Fred Hebert <mononcqc@ferd.ca> | 2015-05-12 15:57:28 +0000 |
commit | 3d810e521c6f21d80cac781a08975869a1cb2e72 (patch) | |
tree | 324ab750ab50bb8144e75bfe45f3964dac5e8d6b /priv | |
parent | 22549108584cc03fbb879fa8117f620a0e1272b3 (diff) |
Make standalone vs complete project template clear
Some templates like OTP apps are usable within releases, so the text
does remain a bit vague, but hopefully less than before.
Diffstat (limited to 'priv')
-rw-r--r-- | priv/templates/app.template | 2 | ||||
-rw-r--r-- | priv/templates/cmake.template | 2 | ||||
-rw-r--r-- | priv/templates/escript.template | 2 | ||||
-rw-r--r-- | priv/templates/lib.template | 2 | ||||
-rw-r--r-- | priv/templates/plugin.template | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/priv/templates/app.template b/priv/templates/app.template index 4087e5e..d0bebd7 100644 --- a/priv/templates/app.template +++ b/priv/templates/app.template @@ -1,4 +1,4 @@ -{description, "OTP Application"}. +{description, "Complete OTP Application structure."}. {variables, [ {name, "mylib", "Name of the OTP application"}, {desc, "An OTP application", "Short description of the app"} diff --git a/priv/templates/cmake.template b/priv/templates/cmake.template index 2874c8a..227f5fa 100644 --- a/priv/templates/cmake.template +++ b/priv/templates/cmake.template @@ -1,2 +1,2 @@ -{description, "Makefile for building C/C++ in c_src"}. +{description, "Standalone Makefile for building C/C++ in c_src"}. {template, "Makefile", "c_src/Makefile"}. diff --git a/priv/templates/escript.template b/priv/templates/escript.template index c0afd3c..e41c313 100644 --- a/priv/templates/escript.template +++ b/priv/templates/escript.template @@ -1,4 +1,4 @@ -{description, "Escriptized application"}. +{description, "Complete escriptized application structure"}. {variables, [ {name, "mylib", "Name of the OTP application to be escriptized"}, {desc, "An escript", "Short description of the project"} diff --git a/priv/templates/lib.template b/priv/templates/lib.template index cbb3672..4d06901 100644 --- a/priv/templates/lib.template +++ b/priv/templates/lib.template @@ -1,4 +1,4 @@ -{description, "OTP Library application (no processes)"}. +{description, "Complete OTP Library application (no processes) structure"}. {variables, [ {name, "mylib", "Name of the OTP library application"}, {desc, "An OTP library", "Short description of the app"} diff --git a/priv/templates/plugin.template b/priv/templates/plugin.template index 0181bd2..811be0b 100644 --- a/priv/templates/plugin.template +++ b/priv/templates/plugin.template @@ -1,4 +1,4 @@ -{description, "Rebar3 plugin"}. +{description, "Rebar3 plugin project structure"}. {variables, [ {name, "myplugin", "Name of the plugin"}, {desc, "A rebar plugin", "Short description of the plugin's purpose"} |