Browse Source

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.
pull/426/head
Fred Hebert 10 years ago
parent
commit
3d810e521c
5 changed files with 5 additions and 5 deletions
  1. +1
    -1
      priv/templates/app.template
  2. +1
    -1
      priv/templates/cmake.template
  3. +1
    -1
      priv/templates/escript.template
  4. +1
    -1
      priv/templates/lib.template
  5. +1
    -1
      priv/templates/plugin.template

+ 1
- 1
priv/templates/app.template View File

@ -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"}

+ 1
- 1
priv/templates/cmake.template View File

@ -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"}.

+ 1
- 1
priv/templates/escript.template View File

@ -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"}

+ 1
- 1
priv/templates/lib.template View File

@ -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"}

+ 1
- 1
priv/templates/plugin.template View File

@ -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"}

Loading…
Cancel
Save