jenkins_launcher 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,10 @@
1
1
  CHANGELOG
2
2
  =========
3
3
 
4
+ v0.0.2 [13-JAN-2013]
5
+ ---------------------
6
+ * ixed a bug where the last few lines of console output was missed while printing the progressive console output.
7
+
4
8
  v0.0.1 [12-JAN-2013]
5
9
  ---------------------
6
10
  * Initial release with all basic functionality implemented.
@@ -82,7 +82,8 @@ module JenkinsLauncher
82
82
  sleep refresh_rate
83
83
  response = @client.job.get_console_output(name, 0, size)
84
84
  end
85
-
85
+ # Print the last few lines
86
+ puts response['output'] unless response['output'].chomp.empty?
86
87
  @client.toggle_debug if debug_changed
87
88
  end
88
89
 
@@ -23,7 +23,7 @@
23
23
  module JenkinsLauncher
24
24
  MAJOR = 0
25
25
  MINOR = 0
26
- TINY = 1
26
+ TINY = 2
27
27
  PRE = nil
28
28
  VERSION = [MAJOR, MINOR, TINY, PRE].compact.join('.')
29
29
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jenkins_launcher
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-01-12 00:00:00.000000000 Z
12
+ date: 2013-01-13 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: jenkins_api_client