view doc/html/guide/06-plugin/04-metadata.md @ 247:4dec71ea1326

Irccd: rename Service to Pollable
author David Demelier <markand@malikania.fr>
date Wed, 17 Aug 2016 21:27:45 +0200
parents 6635b9187d71
children
line wrap: on
line source

## Plugin metadata

While it's not mandatory, please set the following variables in a global `info` object:

  - **author**: (string) your name, usually mail address,
  - **license**: (string) an arbitrary license name,
  - **summary**: (string) a short comment about your plugin,
  - **version**: (string) the plugin version.

Example:

````javascript
/* Plugin information */
info = {
    author: "David Demelier <markand@malikania.fr>",
    license: "ISC",
    summary: "A FPS game for IRC",
    version: "0.0.0.0.0.0.1"
};
````