25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
570 B

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