jenkins_api_client 0.7.1 → 0.7.2
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.md +6 -2
- data/lib/jenkins_api_client/job.rb +1 -1
- data/lib/jenkins_api_client/version.rb +1 -1
- metadata +2 -2
data/CHANGELOG.md
CHANGED
@@ -4,11 +4,15 @@ CHANGELOG
|
|
4
4
|
upcoming
|
5
5
|
--------
|
6
6
|
|
7
|
-
v0.7.
|
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-
|
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/
|
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']}"
|
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.
|
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-
|
12
|
+
date: 2013-02-02 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: nokogiri
|