travis 1.6.2.travis.365.4 → 1.6.2.travis.366.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 +1 -0
- data/lib/travis/cli/report.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
ZTIzYWU4ZThiMjc1ZmYxYjI3MWNmZjdiZjNmNzdlMDJkZWRkYjU0ZA==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
ZGJhNGYxZjRkZjAwYmY1MDE0ZmMwYWRhNjVmNDE5ZDYxOGExOTI0Yg==
|
7
7
|
!binary "U0hBNTEy":
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
ZWRhYTM5OTg3MDBlM2QyNmJiYzYzZmYzNDBhNTA4MjE2YTZhMTRjNGE3MjAz
|
10
|
+
ZGEzMGUyYzllMzJmYTc3M2UyMjQ1NzVhM2JhOGQ4ODUyMzE3NzI2ZjdmMjgy
|
11
|
+
NzU4MzlhMGY0M2RlMGVlMTQwZDljYTNiNjQ5MTE2YjBhOTc1ZjM=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
YzM2ZWY1NjU3ODU3YWM3M2YyOWQwMTJjZWIzZTY0YTljYzk0MDE1NGE0ZTMx
|
14
|
+
MjJiZDI1YjA2Mzg4NWQ4MTI3ZDFkNTY1YzMyZTM1M2JjOGE3MWVkNjkwZWQ3
|
15
|
+
YzVlYThmNDkzYmRiNWFmYjY1OWRkYTliZjE4NWU2ZTU4NjQ2ZDk=
|
data/README.md
CHANGED
@@ -1432,6 +1432,7 @@ If you have the old `travis-cli` gem installed, you should `gem uninstall travis
|
|
1432
1432
|
**1.6.2** (not yet released)
|
1433
1433
|
|
1434
1434
|
* Remove worker support, as API endpoints have been removed from Travis CI.
|
1435
|
+
* Fix `travis report`.
|
1435
1436
|
|
1436
1437
|
**1.6.1** (November 4, 2013)
|
1437
1438
|
|
data/lib/travis/cli/report.rb
CHANGED
@@ -32,7 +32,7 @@ module Travis
|
|
32
32
|
|
33
33
|
def list(key, value, additional = nil)
|
34
34
|
value = case value
|
35
|
-
when Array then value.empty? ? none : value.map(&:inspect).join(", ")
|
35
|
+
when Array then value.empty? ? 'none' : value.map(&:inspect).join(", ")
|
36
36
|
when true then "yes"
|
37
37
|
when false then "no"
|
38
38
|
when nil then "unknown"
|