travis 1.6.7.travis.443.6 → 1.6.7.travis.445.6
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 +5 -0
- data/lib/travis/cli/setup.rb +1 -0
- data/lib/travis/client/commit.rb +8 -0
- data/spec/client/commit_spec.rb +4 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
NzRlYWZmZDZjZGRiYmQ4Y2ZlMDI0YjNiMjBhZjA4NjFhMWNhYmJiZA==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
OTE4ODllY2U2ZGFmZjU2MTY2Y2JkMjAyMTgxNTI4ZTAyYTRhMDNmZA==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
OTI0ZTk1YTM2ZTc4NDUwNjdiYTVhYzM2Mjg3ZTEzZTRkNzIxNjQ1OGQ2NDQx
|
10
|
+
NDU1NzgwNGEyM2VkZmNlNTdmZDhlMjIyZWNhYTI4ODBmMDlmYzFjYjIxNzk2
|
11
|
+
NDVhMGE2OGI2OGJlZGE3MTdjNDVkNWI5MjViY2E1NzdmNjNjM2Y=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
YTVjZWU2YjA2ZTdmMzk5ZTUyMjZkMGY3OTc4NGNlNjA3Y2EyMmJhMjdjNTNi
|
14
|
+
Y2RiNWUxMjgyYzdhOTQ1YWZkYjAxMmZlNzgxNDc2MmQ0YTVlOTdmZWZiYjZj
|
15
|
+
YjJjNWY4ZmNiMDczNzBmOTcyYzMyM2YzNGFkYTA5MDE5OTYyZGI=
|
data/README.md
CHANGED
@@ -1573,6 +1573,11 @@ If you have the old `travis-cli` gem installed, you should `gem uninstall travis
|
|
1573
1573
|
* Better error message when using an invalid access token.
|
1574
1574
|
* Fix desktop notifications using libnotify (Linux/BSD).
|
1575
1575
|
* `travis branches` preserves branch name when displaying Pull Request builds.
|
1576
|
+
* Add `travis setup modulus`.
|
1577
|
+
* Ruby library now supports build annotations.
|
1578
|
+
* Document plugin support.
|
1579
|
+
* Do not have the client raise on unknown API entities.
|
1580
|
+
* Do not try and resolve missing commit data (as it will lead to a 404).
|
1576
1581
|
|
1577
1582
|
**1.6.6** (December 16, 2013)
|
1578
1583
|
|
data/lib/travis/cli/setup.rb
CHANGED
@@ -18,6 +18,7 @@ module Travis
|
|
18
18
|
autoload :Divshot, 'travis/cli/setup/divshot'
|
19
19
|
autoload :OpsWorks, 'travis/cli/setup/opsworks'
|
20
20
|
autoload :SauceConnect, 'travis/cli/setup/sauce_connect'
|
21
|
+
autoload :Modulus, 'travis/cli/setup/modulus'
|
21
22
|
autoload :Service, 'travis/cli/setup/service'
|
22
23
|
|
23
24
|
description "sets up an addon or deploy target"
|
data/lib/travis/client/commit.rb
CHANGED
data/spec/client/commit_spec.rb
CHANGED
@@ -15,4 +15,8 @@ describe Travis::Client::Build do
|
|
15
15
|
its(:committer_email) { should be == 'steve@steveklabnik.com' }
|
16
16
|
its(:compare_url) { should be == 'https://github.com/rails/rails/compare/6581d798e830...a0265b98f16c' }
|
17
17
|
its(:subject) { should be == 'Associaton -> Association' }
|
18
|
+
|
19
|
+
specify "with missing data" do
|
20
|
+
session.load("commit" => { "id" => 12 })['commit'].subject.should be_empty
|
21
|
+
end
|
18
22
|
end
|
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.445.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Konstantin Haase
|
@@ -32,7 +32,7 @@ authors:
|
|
32
32
|
autorequire:
|
33
33
|
bindir: bin
|
34
34
|
cert_chain: []
|
35
|
-
date: 2014-01-
|
35
|
+
date: 2014-01-30 00:00:00.000000000 Z
|
36
36
|
dependencies:
|
37
37
|
- !ruby/object:Gem::Dependency
|
38
38
|
name: faraday
|