summaryrefslogtreecommitdiff
path: root/generator_templates
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2018-02-23 15:58:57 +0200
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2018-02-26 16:06:49 +0200
commit645dceb0a233fc523ac16611fa3fec317d29a7e1 (patch)
tree4bfc439d7720d8e7f715c749d5837088641418f2 /generator_templates
parenteff5746b5e7cf4075edd6d1c76fdcd24c1603bb4 (diff)
downloadgitlab-ce-645dceb0a233fc523ac16611fa3fec317d29a7e1.tar.gz
Run plugins as separate process and pass data via STDIN
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'generator_templates')
-rw-r--r--generator_templates/plugins/template.rb16
1 files changed, 0 insertions, 16 deletions
diff --git a/generator_templates/plugins/template.rb b/generator_templates/plugins/template.rb
deleted file mode 100644
index 16c87f2c2b2..00000000000
--- a/generator_templates/plugins/template.rb
+++ /dev/null
@@ -1,16 +0,0 @@
-# Requirements
-# * File name must end with _s.rb. For example, jenkins_plugin.rb.
-# * All code should be inside class. No code should be executed on file load.
-# * Class name must be same as file name.
-# If file name is jenkins_plugin.rb then class name must be JenkinsPlugin.
-#
-# Reccomendations
-# * Code should not depend on or use GitLab classes and other code.
-# * Consider contributing your plugin to GitLab source code so we can test it
-# and make sure it will work in further version.
-#
-class $NAMEPlugin
- def execute(data)
- # TODO: Implement me
- end
-end