jenkins-plugin 0.1.9 → 0.1.10

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,8 @@
1
1
 
2
2
  class <%= name.capitalize %><%= @step_class %> < Jenkins::Tasks::<%= @step_class %>
3
3
 
4
+ display_name "<%= name.capitalize %> <%= @step_class.downcase %>"
5
+
4
6
  ##
5
7
  # Runs before the build begins
6
8
  #
@@ -8,7 +10,7 @@ class <%= name.capitalize %><%= @step_class %> < Jenkins::Tasks::<%= @step_class
8
10
  # @param [Jenkins::Launcher] launcher the launcher that can run code on the node running this build
9
11
  # @param [Jenkins::Model::Listener] listener the listener for this build.
10
12
  def prebuild(build, launcher, listener)
11
- listener.info "prebuild()"
13
+ # do any setup that needs to be done before this build runs.
12
14
  end
13
15
 
14
16
  ##
@@ -18,7 +20,7 @@ class <%= name.capitalize %><%= @step_class %> < Jenkins::Tasks::<%= @step_class
18
20
  # @param [Jenkins::Launcher] launcher the launcher that can run code on the node running this build
19
21
  # @param [Jenkins::Model::Listener] listener the listener for this build.
20
22
  def perform(build, launcher, listener)
21
- listener.info "perform()"
23
+ # actually perform the build step
22
24
  end
23
25
 
24
26
  end
@@ -1,5 +1,5 @@
1
1
  module Jenkins
2
2
  class Plugin
3
- VERSION = "0.1.9"
3
+ VERSION = "0.1.10"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jenkins-plugin
3
3
  version: !ruby/object:Gem::Version
4
- hash: 9
4
+ hash: 15
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 9
10
- version: 0.1.9
9
+ - 10
10
+ version: 0.1.10
11
11
  platform: ruby
12
12
  authors:
13
13
  - Charles Lowell