travis 1.6.7.travis.434.6 → 1.6.7.travis.441.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- data/README.md +6 -5
- data/lib/travis/client/job.rb +3 -3
- data/lib/travis/client.rb +1 -0
- data/spec/support/fake_api.rb +10 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
ZThkM2MyNTBkOGJkYTcyZTNjYjljMzQ2N2I4NDM0ZTRkNTk3MzQzMA==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
NmVhMGE3ZTdhMWQ0YmU4OWU5NTI2M2Y2YmExZWNhMDQyNjZjNWZhOQ==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
NTY1MDRkMThhNGY3ODQ1ZjYzNDQ5MjFkZjA1ZjA3MzM2MzRlM2IyOGY2ZWJi
|
10
|
+
ODMyMzdkM2EzZjI1YTUwNGM1YzJlY2IzZWQzNDkxYjAxZmI0NzJjZTYyNGVi
|
11
|
+
MjdlNTdlY2NhNmVkYzEwMzVlMDA0YmJlM2VkYTFlM2QwNjgyZGY=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
NjYyMjlmZGM2OTk3OGQ2OWVkYzE3ODlhYTUwMDM3ZjBlZjNjYTJjNDE4NDVj
|
14
|
+
YWQxMjM3ODJkZTgwMWYzMzY4ZGQ5N2RjYjMyZmZjZTQ0MTljMWY4NTVkMWJj
|
15
|
+
NTRmMzM1N2U3YTEyNzNkNzMzY2U2ZDFkMGVhODc0MzcwZDkwZjY=
|
data/README.md
CHANGED
@@ -343,13 +343,13 @@ Lists repositories and displays whether these are active or not. Has a variety o
|
|
343
343
|
$ travis repos -m 'rkh/travis-*'
|
344
344
|
rkh/travis-chat (active: yes, admin: yes, push: yes, pull: yes)
|
345
345
|
Description: example app demoing travis-sso usage
|
346
|
-
|
346
|
+
|
347
347
|
rkh/travis-encrypt (active: yes, admin: yes, push: yes, pull: yes)
|
348
348
|
Description: proof of concept in browser encryption of travis settings
|
349
|
-
|
349
|
+
|
350
350
|
rkh/travis-lite (active: no, admin: yes, push: yes, pull: yes)
|
351
351
|
Description: Travis CI without the JavaScript
|
352
|
-
|
352
|
+
|
353
353
|
rkh/travis-surveillance (active: no, admin: yes, push: yes, pull: yes)
|
354
354
|
Description: Veille sur un projet.
|
355
355
|
|
@@ -529,7 +529,7 @@ You can also use this command to delete caches:
|
|
529
529
|
|
530
530
|
On branch example:
|
531
531
|
cache--rvm-2.0.0--gemfile-Gemfile last modified: 2013-11-04 13:45:44 size: 62.21 MiB
|
532
|
-
|
532
|
+
|
533
533
|
Overall size of above caches: 62.21 MiB
|
534
534
|
|
535
535
|
#### `cancel`
|
@@ -799,7 +799,7 @@ Outputs the public key for a repository.
|
|
799
799
|
|
800
800
|
$ travis pubkey
|
801
801
|
Public key for travis-ci/travis:
|
802
|
-
|
802
|
+
|
803
803
|
ssh-rsa ...
|
804
804
|
$ travis pubkey -r rails/rails > rails.key
|
805
805
|
|
@@ -1572,6 +1572,7 @@ If you have the old `travis-cli` gem installed, you should `gem uninstall travis
|
|
1572
1572
|
* Properly display OS for projects tested on multiple operating systems.
|
1573
1573
|
* Better error message when using an invalid access token.
|
1574
1574
|
* Fix desktop notifications using libnotify (Linux/BSD).
|
1575
|
+
* `travis branches` preserves branch name when displaying Pull Request builds.
|
1575
1576
|
|
1576
1577
|
**1.6.6** (December 16, 2013)
|
1577
1578
|
|
data/lib/travis/client/job.rb
CHANGED
@@ -7,13 +7,13 @@ module Travis
|
|
7
7
|
preloadable
|
8
8
|
|
9
9
|
# @!parse attr_reader :repository_id, :build_id, :commit_id, :log_id, :number, :config, :state, :started_at, :finished_at, :queue, :allow_failure, :tags
|
10
|
-
attributes :repository_id, :build_id, :commit_id, :log_id, :number, :config, :state, :started_at, :finished_at, :queue, :allow_failure, :tags
|
10
|
+
attributes :repository_id, :build_id, :commit_id, :log_id, :number, :config, :state, :started_at, :finished_at, :queue, :allow_failure, :tags, :annotation_ids
|
11
11
|
time :started_at, :finished_at
|
12
12
|
|
13
13
|
alias allow_failure? allow_failure
|
14
14
|
|
15
|
-
# @!parse attr_reader :commit, :repository, :build
|
16
|
-
has :commit, :repository, :build, :log
|
15
|
+
# @!parse attr_reader :commit, :repository, :build, :annotations
|
16
|
+
has :commit, :repository, :build, :log, :annotations
|
17
17
|
|
18
18
|
one :job
|
19
19
|
many :jobs
|
data/lib/travis/client.rb
CHANGED
@@ -7,6 +7,7 @@ require 'travis/client/session'
|
|
7
7
|
require 'travis/client/entity'
|
8
8
|
require 'travis/client/user'
|
9
9
|
require 'travis/client/repository'
|
10
|
+
require 'travis/client/annotation'
|
10
11
|
require 'travis/client/build'
|
11
12
|
require 'travis/client/artifact'
|
12
13
|
require 'travis/client/cache'
|
data/spec/support/fake_api.rb
CHANGED
@@ -66,7 +66,8 @@ module Travis
|
|
66
66
|
"finished_at"=>"2013-01-13T16:11:04Z",
|
67
67
|
"queue"=>"builds.rails",
|
68
68
|
"allow_failure"=>false,
|
69
|
-
"tags"=>""
|
69
|
+
"tags"=>"",
|
70
|
+
"annotation_ids"=>[1]},
|
70
71
|
"commit"=>
|
71
72
|
{"id"=>1201631,
|
72
73
|
"sha"=>"a0265b98f16c6e33be32aa3f57231d1189302400",
|
@@ -78,7 +79,14 @@ module Travis
|
|
78
79
|
"committer_name"=>"Steve Klabnik",
|
79
80
|
"committer_email"=>"steve@steveklabnik.com",
|
80
81
|
"compare_url"=>
|
81
|
-
"https://github.com/rails/rails/compare/6581d798e830...a0265b98f16c"}
|
82
|
+
"https://github.com/rails/rails/compare/6581d798e830...a0265b98f16c"},
|
83
|
+
"annotations"=>
|
84
|
+
[{"id"=>1,
|
85
|
+
"job_id"=>4125097,
|
86
|
+
"description"=>"The job passed.",
|
87
|
+
"provider_name"=>"Travis CI",
|
88
|
+
"url"=>"https://travis-ci.org/rails/rails/jobs/4125097",
|
89
|
+
"status"=>''}]}.to_json
|
82
90
|
end
|
83
91
|
|
84
92
|
get '/builds/4125095' do
|
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.7.travis.
|
4
|
+
version: 1.6.7.travis.441.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Konstantin Haase
|
@@ -30,7 +30,7 @@ authors:
|
|
30
30
|
autorequire:
|
31
31
|
bindir: bin
|
32
32
|
cert_chain: []
|
33
|
-
date: 2014-01-
|
33
|
+
date: 2014-01-29 00:00:00.000000000 Z
|
34
34
|
dependencies:
|
35
35
|
- !ruby/object:Gem::Dependency
|
36
36
|
name: faraday
|