travis 1.6.3.travis.389.4 → 1.6.3.travis.390.4
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.
- checksums.yaml +8 -8
- data/README.md +4 -1
- data/lib/travis/client/artifact.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
ODI0NjU0ZDQxOTQyNmE2ODhkOTM2NGQ1OGZiNzJiNzA0OTVkNDBlOQ==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
ZDIxOWMyYzM1MmQ3NmFkYjJjODc3MmE4YjEzZDdiYmQ0OTk3MGM3MQ==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
ZjMyNjVlMDRhMjFkMjRhNDU1MjFmYTgzMDcxZjBjZTE5ZGM4ZmQwYjYyMzgx
|
|
10
|
+
MjFhNDIwNGQ1MjcxMThiYmU0Y2NkZDgxMzMxOGM0NGEyMDYwZjk2MjFkMzkz
|
|
11
|
+
OGMzODg0YWRlMzk2NTBhYjUyZjMyYmE4YTUzNWM0ZjJkMGJkMjY=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
MGFjOTM0MWIzZjRhODgyM2UyNGJiMWUxOTQzMTQxMTJkMTVmN2Y3NDFhOGJm
|
|
14
|
+
NmNjMzI5MTQxZGNlNjhlZDI3NDUwZmNjMmUxODA2NGQyMDI1YWVkNWQ3ODE4
|
|
15
|
+
YjBmYzk2ZTMxNWNhMDM5ZTUwMWUwYWE4NTUwNjY2OGUwNWRlNzI=
|
data/README.md
CHANGED
|
@@ -1454,7 +1454,10 @@ If you have the old `travis-cli` gem installed, you should `gem uninstall travis
|
|
|
1454
1454
|
* Include commit message in desktop notifications.
|
|
1455
1455
|
* Check if Notification Center or Growl is actually running before sending out notifications.
|
|
1456
1456
|
* Better documentation for desktop notifications.
|
|
1457
|
-
*
|
|
1457
|
+
* Improved handling of pusher errors when streaming.
|
|
1458
|
+
* Add ability to load archived logs from different host.
|
|
1459
|
+
* User proper API endpoint for streaming logs, as old endpoint has been removed.
|
|
1460
|
+
* Make tests run on Rubinius 2.x.
|
|
1458
1461
|
|
|
1459
1462
|
**1.6.2** (November 8, 2013)
|
|
1460
1463
|
|
|
@@ -50,7 +50,7 @@ module Travis
|
|
|
50
50
|
end
|
|
51
51
|
|
|
52
52
|
listener.on_connect do
|
|
53
|
-
data = session.get_raw("/
|
|
53
|
+
data = session.get_raw("/logs/#{id}", nil, "Accept" => CHUNKED)['log']
|
|
54
54
|
if data['parts']
|
|
55
55
|
data['parts'].each { |p| yield p['content'] }
|
|
56
56
|
number = data['parts'].last['number'] if data['parts'].any?
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: travis
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.6.3.travis.
|
|
4
|
+
version: 1.6.3.travis.390.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Konstantin Haase
|
|
@@ -29,7 +29,7 @@ authors:
|
|
|
29
29
|
autorequire:
|
|
30
30
|
bindir: bin
|
|
31
31
|
cert_chain: []
|
|
32
|
-
date: 2013-11-
|
|
32
|
+
date: 2013-11-26 00:00:00.000000000 Z
|
|
33
33
|
dependencies:
|
|
34
34
|
- !ruby/object:Gem::Dependency
|
|
35
35
|
name: faraday
|