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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f7838b20273870db6e467f340dfb931bf04e9049efa6fe212b648c4d220edf4e
4
- data.tar.gz: 7a6fafbd1a95c9155742286ff786d1ac0752d7571462e536069a9b3770ae40a4
3
+ metadata.gz: 3b5dc50736df62cf49ba2900f9bb7e78e5843b5b8200501598dddf2621f33147
4
+ data.tar.gz: 45fc185e8e8d3c270293f5205f17aeb7960e5a0c2e64150706519459773a7c51
5
5
  SHA512:
6
- metadata.gz: 30a66f17a080b4c94cec4ae5f221bc3c707e90a5d3f9c877de16a3ff7c4eae6177a778da4afafd271d73c4a19728051de88e39ad90bf246a362b20c00908cd51
7
- data.tar.gz: 8f013a79cd23ed3658ef4130617760dbe7d5c9cfdca9c0e7d0c12b90d73ae19657adca1749e8ba89cbdd27d429adf970c2dfffcf970626786b4acfa56569c3a3
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 infos Travis CI has about users and repositories become out of date. If that should happen, you can manually trigger a sync:
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 of a repository temporarily or indefinitely, you can do so with the `disable` command:
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 add tell the client to encrypt every line separately via `--split`:
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 infos about the latest build:
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 the [private dependencies example](examples/cli/private_dependencies.md) for an in-detail description.
1415
+ See [Private Dependencies](https://docs.travis-ci.com/user/private-dependencies/) for an in-detail description.
1416
1416
 
1417
1417
  #### `status`
1418
1418
 
@@ -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 infos"
14
+ say "\nrun `#$0 help COMMAND` for more info"
15
15
  end
16
16
  end
17
17
 
@@ -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 infos to the User-Agent' do
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}")
@@ -1,6 +1,6 @@
1
1
  # Run `rake travis.gemspec` to update the gemspec.
2
2
  Gem::Specification.new do |s|
3
- # general infos
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.1197.9
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