jenkins-plugin 0.1.9 → 0.1.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -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
|
-
|
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
|
-
|
23
|
+
# actually perform the build step
|
22
24
|
end
|
23
25
|
|
24
26
|
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:
|
4
|
+
hash: 15
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 1
|
9
|
-
-
|
10
|
-
version: 0.1.
|
9
|
+
- 10
|
10
|
+
version: 0.1.10
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Charles Lowell
|