jenkins_api_client 0.7.1 → 0.7.2

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.
data/CHANGELOG.md CHANGED
@@ -4,11 +4,15 @@ CHANGELOG
4
4
  upcoming
5
5
  --------
6
6
 
7
- v0.7.1 [30-JAN-2012]
7
+ v0.7.2 [02-FEB-2013]
8
+ ---------------------
9
+ * Fixed a minor bug in `get_console_output` of Job.
10
+
11
+ v0.7.1 [30-JAN-2013]
8
12
  ---------------------
9
13
  * Fixed a bug (Issue #23) to remove the usage of "\" in Job.
10
14
 
11
- v0.7.0 [27-JAN-2012]
15
+ v0.7.0 [27-JAN-2013]
12
16
  ---------------------
13
17
  * Fixed a bug where the ignorecase was never used in view list
14
18
  * Raise an error if the view doesnt exists while listing jobs
@@ -318,7 +318,7 @@ module JenkinsApi
318
318
  else
319
319
  raise "Mode should either be 'text' or 'html'. You gave: #{mode}"
320
320
  end
321
- get_msg = "/job/#{job_name}/#{build_num}/logText/progressice#{mode}?"
321
+ get_msg = "/job/#{job_name}/#{build_num}/logText/progressive#{mode}?"
322
322
  get_msg << "start=#{start}"
323
323
  api_response = @client.api_get_request(get_msg, nil, nil)
324
324
  #puts "Response: #{api_response.header['x-more-data']}"
@@ -24,7 +24,7 @@ module JenkinsApi
24
24
  class Client
25
25
  MAJOR = 0
26
26
  MINOR = 7
27
- TINY = 1
27
+ TINY = 2
28
28
  PRE = nil
29
29
  VERSION = [MAJOR, MINOR, TINY, PRE].compact.join('.')
30
30
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jenkins_api_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.1
4
+ version: 0.7.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-30 00:00:00.000000000 Z
12
+ date: 2013-02-02 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: nokogiri