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 CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- ZDQ3YmQ3YWExYWVjNTE3NjhhOWZkNjI4MGNkMTFlNDQ0NTQ0NzJmMA==
4
+ NzRlYWZmZDZjZGRiYmQ4Y2ZlMDI0YjNiMjBhZjA4NjFhMWNhYmJiZA==
5
5
  data.tar.gz: !binary |-
6
- MmU4NjMwZjAzN2FkODhkMzBiMzk3MzI0ZTQwMDQwZTVkNWM4ZjQyMQ==
6
+ OTE4ODllY2U2ZGFmZjU2MTY2Y2JkMjAyMTgxNTI4ZTAyYTRhMDNmZA==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- NmUwNzIzOTExN2E1ZDQ3ZGZmYWIwOTk1M2RjODk2MTE3NjYyYzA2ZjI1NWQw
10
- NDAzMGM5YmUzZGYzOTc1MDc1NTFhZjA3YmIzYTg4Y2I4ODg2YmFjM2E4ODdk
11
- NTFkMGRkMzBkNmJkNDhjOGM4ZmVkNDA4OWM0MmRiOWI5MGZkY2Y=
9
+ OTI0ZTk1YTM2ZTc4NDUwNjdiYTVhYzM2Mjg3ZTEzZTRkNzIxNjQ1OGQ2NDQx
10
+ NDU1NzgwNGEyM2VkZmNlNTdmZDhlMjIyZWNhYTI4ODBmMDlmYzFjYjIxNzk2
11
+ NDVhMGE2OGI2OGJlZGE3MTdjNDVkNWI5MjViY2E1NzdmNjNjM2Y=
12
12
  data.tar.gz: !binary |-
13
- MDNiYmJhNTk5M2U3OGNjYzk3NmY0MmIzMzYyN2FkZjg2MjVhNTMzMjBlN2U3
14
- M2IwYThiZDhkNzVlOTE1OTJmY2MwMGJlNjdmODg3NDAwZTgzNGExODI2NGMy
15
- OGE5NWMyOGNlZDQwMzVlZGU4YTJmMDUyNjc4ODk3NmFjN2I5YWU=
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
 
@@ -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"
@@ -21,6 +21,14 @@ module Travis
21
21
  def inspect_info
22
22
  short_sha + " " + subject.inspect
23
23
  end
24
+
25
+ def missing?(attribute)
26
+ false
27
+ end
28
+
29
+ def complete?
30
+ true
31
+ end
24
32
  end
25
33
  end
26
34
  end
@@ -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.443.6
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-29 00:00:00.000000000 Z
35
+ date: 2014-01-30 00:00:00.000000000 Z
36
36
  dependencies:
37
37
  - !ruby/object:Gem::Dependency
38
38
  name: faraday