travis 1.8.14.travis.1197.9 → 1.8.14.travis.1198.9
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 +4 -4
- data/README.md +5 -5
- data/lib/travis/cli/help.rb +1 -1
- data/spec/client/session_spec.rb +1 -1
- data/travis.gemspec +3 -1
- metadata +3 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3b5dc50736df62cf49ba2900f9bb7e78e5843b5b8200501598dddf2621f33147
|
|
4
|
+
data.tar.gz: 45fc185e8e8d3c270293f5205f17aeb7960e5a0c2e64150706519459773a7c51
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 993e806337970aaba711bd0d12e6acb91cd9cf950287c4899f98cdae0cdbd67cd3be7648e527019c622844bff0c908d91373930aed28731f862640e106c24de3
|
|
7
|
+
data.tar.gz: 3a8b6a83b53d375259b49c102f4dfaf4bc0e3619c4df29361ad964d82dfabdbcee42636d334b501ea7cf4c5e34ea4cb9c1e80271777e6710bf0ab534a1b45d9b
|
data/README.md
CHANGED
|
@@ -448,7 +448,7 @@ travis-ci/gh: disabled :(
|
|
|
448
448
|
-b, --background will trigger sync but not block until sync is done
|
|
449
449
|
-f, --force will force sync, even if one is already running
|
|
450
450
|
|
|
451
|
-
Sometimes the
|
|
451
|
+
Sometimes the info Travis CI has about users and repositories become out of date. If that should happen, you can manually trigger a sync:
|
|
452
452
|
|
|
453
453
|
``` console
|
|
454
454
|
$ travis sync
|
|
@@ -701,7 +701,7 @@ job #57.1 has been canceled
|
|
|
701
701
|
|
|
702
702
|
#### `disable`
|
|
703
703
|
|
|
704
|
-
If you want to turn
|
|
704
|
+
If you want to turn off a repository temporarily or indefinitely, you can do so with the `disable` command:
|
|
705
705
|
|
|
706
706
|
``` console
|
|
707
707
|
$ travis disable
|
|
@@ -772,7 +772,7 @@ For deploy keys, it is really handy to pipe them into the command:
|
|
|
772
772
|
$ cat id_rsa | travis encrypt
|
|
773
773
|
```
|
|
774
774
|
|
|
775
|
-
Another use case for piping files into it: If you have a file with sensitive environment variables, like foreman's [.env](http://ddollar.github.com/foreman/#ENVIRONMENT) file, you can
|
|
775
|
+
Another use case for piping files into it: If you have a file with sensitive environment variables, like foreman's [.env](http://ddollar.github.com/foreman/#ENVIRONMENT) file, you can tell the client to encrypt every line separately via `--split`:
|
|
776
776
|
|
|
777
777
|
``` console
|
|
778
778
|
$ cat .env | travis encrypt --split
|
|
@@ -1269,7 +1269,7 @@ Encrypt API key? |yes|
|
|
|
1269
1269
|
|
|
1270
1270
|
#### `show`
|
|
1271
1271
|
|
|
1272
|
-
Displays general
|
|
1272
|
+
Displays general info about the latest build:
|
|
1273
1273
|
|
|
1274
1274
|
``` console
|
|
1275
1275
|
$ travis show
|
|
@@ -1412,7 +1412,7 @@ Uploading public key to GitHub.
|
|
|
1412
1412
|
Uploading private key to Travis CI.
|
|
1413
1413
|
```
|
|
1414
1414
|
|
|
1415
|
-
See
|
|
1415
|
+
See [Private Dependencies](https://docs.travis-ci.com/user/private-dependencies/) for an in-detail description.
|
|
1416
1416
|
|
|
1417
1417
|
#### `status`
|
|
1418
1418
|
|
data/lib/travis/cli/help.rb
CHANGED
|
@@ -11,7 +11,7 @@ module Travis
|
|
|
11
11
|
else
|
|
12
12
|
say "Usage: travis COMMAND ...\n\nAvailable commands:\n\n"
|
|
13
13
|
commands.each { |c| say "\t#{color(c.command_name, :command).ljust(22)} #{color(c.description, :info)}" }
|
|
14
|
-
say "\nrun `#$0 help COMMAND` for more
|
|
14
|
+
say "\nrun `#$0 help COMMAND` for more info"
|
|
15
15
|
end
|
|
16
16
|
end
|
|
17
17
|
|
data/spec/client/session_spec.rb
CHANGED
|
@@ -62,7 +62,7 @@ describe Travis::Client::Session do
|
|
|
62
62
|
subject.headers['User-Agent'].should include("Ruby #{RUBY_VERSION}")
|
|
63
63
|
end
|
|
64
64
|
|
|
65
|
-
it 'allows adding custom
|
|
65
|
+
it 'allows adding custom info to the User-Agent' do
|
|
66
66
|
subject.agent_info = "foo"
|
|
67
67
|
subject.headers['User-Agent'].should include("foo")
|
|
68
68
|
subject.headers['User-Agent'].should include("Travis/#{Travis::VERSION}")
|
data/travis.gemspec
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Run `rake travis.gemspec` to update the gemspec.
|
|
2
2
|
Gem::Specification.new do |s|
|
|
3
|
-
# general
|
|
3
|
+
# general info
|
|
4
4
|
s.name = "travis"
|
|
5
5
|
s.version = "1.8.13"
|
|
6
6
|
s.required_ruby_version = ">= 2.3.0"
|
|
@@ -44,6 +44,7 @@ Gem::Specification.new do |s|
|
|
|
44
44
|
"Tobias Bieniek",
|
|
45
45
|
"joshua-anderson",
|
|
46
46
|
"Adam Baxter",
|
|
47
|
+
"Alfie John",
|
|
47
48
|
"Basarat Ali Syed",
|
|
48
49
|
"Christian H\xC3\xB6ltje",
|
|
49
50
|
"Dani Hodovic",
|
|
@@ -113,6 +114,7 @@ Gem::Specification.new do |s|
|
|
|
113
114
|
"tobias.bieniek@gmail.com",
|
|
114
115
|
"j@zatigo.com",
|
|
115
116
|
"github@voltagex.org",
|
|
117
|
+
"33c6c91f3bb4a391082e8a29642cafaf@alfie.wtf",
|
|
116
118
|
"basaratali@gmail.com",
|
|
117
119
|
"docwhat@gerf.org",
|
|
118
120
|
"danihodovic@users.noreply.github.com",
|
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.8.14.travis.
|
|
4
|
+
version: 1.8.14.travis.1198.9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Hiro Asari
|
|
@@ -36,6 +36,7 @@ authors:
|
|
|
36
36
|
- Tobias Bieniek
|
|
37
37
|
- joshua-anderson
|
|
38
38
|
- Adam Baxter
|
|
39
|
+
- Alfie John
|
|
39
40
|
- Basarat Ali Syed
|
|
40
41
|
- Christian Höltje
|
|
41
42
|
- Dani Hodovic
|
|
@@ -282,6 +283,7 @@ email:
|
|
|
282
283
|
- tobias.bieniek@gmail.com
|
|
283
284
|
- j@zatigo.com
|
|
284
285
|
- github@voltagex.org
|
|
286
|
+
- 33c6c91f3bb4a391082e8a29642cafaf@alfie.wtf
|
|
285
287
|
- basaratali@gmail.com
|
|
286
288
|
- docwhat@gerf.org
|
|
287
289
|
- danihodovic@users.noreply.github.com
|