getgauge / gauge-repository

Installation details of gauge plugins and language runners

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Gauge-Repository

Contributor Covenant

This contains the meta-data of gauge plugins and language runners which is used during installation and upgrades.

Steps to add new plugin details

  • Add a file with name {plugin_name}-install.json in the base directory.
  • Following snippet shows the json format for the above file.
{
    "name": "{plugin_name}",
    "description": "{description}",
    "versions": [
        {
            "version": "{version_number}",
            "gaugeVersionSupport": {
                "minimum": "{minimum gauge version supported}",   //mandatory
                "maximum": "{maximum gauge version supported}"    //optional
            },
            "install": {
                //Command to start the plugin which should be relative to plugin directory
                "windows": [],
                "linux": [],
                "darwin": []
            },
            "DownloadUrls": {
                //Download url for each platform, if the links are not present,
                //gauge assumes the plugin does not support that platform.
                "x86": {
                    "windows": "",  
                    "linux": "",
                    "darwin": ""
                },
                "x64": {
                    "windows": "",
                    "linux": "",
                    "darwin": ""
                }
            }
        }
    ]
}

About

Installation details of gauge plugins and language runners


Languages

Language:Ruby 40.4%Language:Python 19.4%Language:Java 14.6%Language:JavaScript 10.6%Language:C# 7.4%Language:TypeScript 5.7%Language:Shell 1.9%