travis 1.8.12.travis.1136.9 → 1.8.12

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: d6217c88912e32a9b54d638465935109b2ac5f4942ee2d604a67ad519712ee3a
4
- data.tar.gz: 9e0ccd040b5b3085dbb01dc643d1149256308ffd65aa956d0e52857682860c35
3
+ metadata.gz: 1932c7dccfa29de456997934541146ec7d9d0d551e96dadbc6fc6750a71937af
4
+ data.tar.gz: b03a1b414d60764b565852897a3f55453148078cf02e5c5220bdbe334d249e4d
5
5
  SHA512:
6
- metadata.gz: 3b16938eb4f3e3502521e06523531222f1c426dcbbd5e7aee1a2514d7792ead9e3bc0b42f8b1c96241273ff27a94e247b238be237bb0fd79576fbe2c67ba1ac3
7
- data.tar.gz: 1c7708f5fedaad5ce783bb1a412a39c0e687fecba3d524b9cddddce74028d98c0a63d69053ef1c909c4ec67a1da27cbd4a7b42332cbf8a3056a38fe439bf723b
6
+ metadata.gz: 8a59e0895d3b3cfb8686fba98ec8e6be40fca086f29b3e367b531b0433ca0394f76a4a2ea49db0b467642af8c399cb0c114ba6545384c2b737f2cfc5d40ed236
7
+ data.tar.gz: 40f6c24ae7d74a4a61a0ebe775b9b073648d1875ea9c3ee34b90c6df8be66a39888b7352ed0132fd107a90d1d4df0042669df23e599b9e31c22544963aa2f98c
data/README.md CHANGED
@@ -12,7 +12,7 @@ The [travis gem](https://rubygems.org/gems/travis) includes both a [command line
12
12
  * [`version`](#version) - outputs the client version
13
13
  * [General API Commands](#general-api-commands)
14
14
  * [`accounts`](#accounts) - displays accounts and their subscription status
15
- * [`console`](#console) - interactive shell; requires `pry`
15
+ * [`console`](#console) - interactive shell
16
16
  * [`endpoint`](#endpoint) - displays or changes the API endpoint
17
17
  * [`login`](#login) - authenticates against the API and stores the token
18
18
  * [`monitor`](#monitor) - live monitor for what's going on
@@ -2123,8 +2123,18 @@ If you have the old `travis-cli` gem installed, you should `gem uninstall travis
2123
2123
 
2124
2124
  ## Version History
2125
2125
 
2126
+ **1.8.12** (March 23, 2020)
2127
+
2128
+ * Fix `encrypt-file` command (https://github.com/travis-ci/travis.rb/pull/715)
2129
+ * Fix `console` command (https://github.com/travis-ci/travis.rb/issues/654)
2130
+ * Ask for confirmation when `encrypt` and `encrypt-file` commands receive
2131
+ `-a`, `--add` flag (https://github.com/travis-ci/travis.rb/issues/651)
2132
+
2126
2133
  **1.8.11** (March 2, 2020)
2127
2134
 
2135
+ * Generate unique key-iv pair for each file (https://github.com/travis-ci/travis.rb/pull/678)
2136
+ * Add logout command
2137
+
2128
2138
  **1.8.10** (May 5, 2019)
2129
2139
 
2130
2140
  **1.8.8** (March 3, 2017)
@@ -20,7 +20,7 @@ _travis_complete() {
20
20
  if type compdef 1>/dev/null 2>/dev/null; then
21
21
  compdef _travis travis
22
22
  _travis() { _travis_complete $((${#words} - 1)) "${words[2]}"; }
23
- _travis_commands() { list=(accounts:"displays accounts and their subscription status" branches:"displays the most recent build for each branch" cache:"lists or deletes repository caches" cancel:"cancels a job or build" console:"interactive shell; requires `pry`" disable:"disables a project" enable:"enables a project" encrypt:"encrypts values for the .travis.yml" encrypt-file:"encrypts a file and adds decryption steps to .travis.yml" endpoint:"displays or changes the API endpoint" env:"show or modify build environment variables" help:"helps you out when in dire need of information" history:"displays a projects build history" init:"generates a .travis.yml and enables the project" lint:"display warnings for a .travis.yml" login:"authenticates against the API and stores the token" logout:"deletes the stored API token" logs:"streams test logs" monitor:"live monitor for what's going on" open:"opens a build or job in the browser" pubkey:"prints out a repository's public key" raw:"makes an (authenticated) API call and prints out the result" report:"generates a report useful for filing issues" repos:"lists repositories the user has certain permissions on" requests:"lists recent requests" restart:"restarts a build or job" settings:"access repository settings" setup:"sets up an addon or deploy target" show:"displays a build or job" sshkey:"checks, updates or deletes an SSH key" status:"checks status of the latest build" sync:"triggers a new sync with GitHub" token:"outputs the secret API token" version:"outputs the client version" whatsup:"lists most recent builds" whoami:"outputs the current user") _describe -t common-commands 'common commands' list; }
23
+ _travis_commands() { list=(accounts:"displays accounts and their subscription status" branches:"displays the most recent build for each branch" cache:"lists or deletes repository caches" cancel:"cancels a job or build" console:"interactive shell" disable:"disables a project" enable:"enables a project" encrypt:"encrypts values for the .travis.yml" encrypt-file:"encrypts a file and adds decryption steps to .travis.yml" endpoint:"displays or changes the API endpoint" env:"show or modify build environment variables" help:"helps you out when in dire need of information" history:"displays a projects build history" init:"generates a .travis.yml and enables the project" lint:"display warnings for a .travis.yml" login:"authenticates against the API and stores the token" logout:"deletes the stored API token" logs:"streams test logs" monitor:"live monitor for what's going on" open:"opens a build or job in the browser" pubkey:"prints out a repository's public key" raw:"makes an (authenticated) API call and prints out the result" report:"generates a report useful for filing issues" repos:"lists repositories the user has certain permissions on" requests:"lists recent requests" restart:"restarts a build or job" settings:"access repository settings" setup:"sets up an addon or deploy target" show:"displays a build or job" sshkey:"checks, updates or deletes an SSH key" status:"checks status of the latest build" sync:"triggers a new sync with GitHub" token:"outputs the secret API token" version:"outputs the client version" whatsup:"lists most recent builds" whoami:"outputs the current user") _describe -t common-commands 'common commands' list; }
24
24
  _travis_setup() { list=(anynines:"automatic deployment to anynines" appfog:"automatic deployment to Appfog" artifacts:"automatic artifact shipping to S3" biicode:"automatic publish to biicode" cloudcontrol:"automatic deployment to cloudControl" cloudfiles:"automatic pushing to Rackspace Cloud Files" cloudfoundry:"automatic deployment to Cloud Foundry" cloud66:"Automatic deployment to Cloud 66" codedeploy:"triggering a new deployment on Amazon CodeDeploy" deis:"automatic deployment to a deis app" divshot:"deployment to Divshot.io" elasticbeanstalk:"deployment to AWS Elastic Beanstalk" engineyard:"automatic deployment to Engine Yard" gcs:"automatic pushing to Google Cloud Storage" hackage:"automatic deployment of hackage packages" heroku:"automatic deployment to Heroku" modulus:"deployment to Modulus" npm:"automatic release to NPM" ninefold:"Automatic deployment to Ninefold" nodejitsu:"automatic deployment to Nodejitsu" openshift:"automatic deployment to OpenShfit" opsworks:"deployment to OpsWorks" pypi:"automatic deployment to PyPI" releases:"Upload Assets to GitHub Releases" rubygems:"automatic release to RubyGems" s3:"automatic pushing to S3" sauce_connect:"Sauce Connet addon for Sauce Labs integration") _describe -t common-commands 'common commands' list; }
25
25
  _travis_settings() { list=(builds_only_with_travis_yml:"Only run builds with a .travis.yml" build_pushes:"Build pushes" build_pull_requests:"Build pull requests" maximum_number_of_builds:"Maximum number of concurrent builds" auto_cancel_pushes:"Cancel older push builds that are not yet running" auto_cancel_pull_requests:"Cancel older pull request builds that are not yet running") _describe -t common-commands 'common commands' list; }
26
26
  _travis_init() { list=(c:'initialize c project' clojure:'initialize clojure project' cpp:'initialize cpp project' erlang:'initialize erlang project' go:'initialize go project' groovy:'initialize groovy project' haskell:'initialize haskell project' java:'initialize java project' node_js:'initialize node_js project' objective-c:'initialize objective-c project' perl:'initialize perl project' php:'initialize php project' python:'initialize python project' ruby:'initialize ruby project' scala:'initialize scala project') _describe -t common-commands 'common commands' list; }
@@ -1,3 +1,3 @@
1
1
  module Travis
2
- VERSION = '1.8.11'
2
+ VERSION = '1.8.12'
3
3
  end
@@ -2,7 +2,7 @@
2
2
  Gem::Specification.new do |s|
3
3
  # general infos
4
4
  s.name = "travis"
5
- s.version = "1.8.11"
5
+ s.version = "1.8.12"
6
6
  s.description = "CLI and Ruby client library for Travis CI"
7
7
  s.homepage = "https://github.com/travis-ci/travis.rb"
8
8
  s.summary = "Travis CI client"
@@ -11,89 +11,158 @@ Gem::Specification.new do |s|
11
11
 
12
12
  # generated from git shortlog -sn
13
13
  s.authors = [
14
- "Hiro Asari",
15
14
  "Konstantin Haase",
16
- "Piotr Milcarz",
15
+ "Hiro Asari",
16
+ "Henrik Hodne",
17
+ "joshua-anderson",
18
+ "Aaron Hill",
17
19
  "Buck Doyle",
20
+ "Peter Souter",
18
21
  "Christopher Grim",
19
22
  "Joe Corcoran",
20
23
  "Sven Fuchs",
21
- "Aakriti Gupta",
22
- "Josh Kalderimis",
23
- "Ke Zhu",
24
+ "Peter van Dijk",
24
25
  "Piotr Sarnacki",
25
- "Ren\xC3\xA9e Hendricksen",
26
+ "Josh Kalderimis",
27
+ "Aakriti Gupta",
26
28
  "carlad",
29
+ "Piotr Milcarz",
30
+ "Ren\xC3\xA9e Hendricksen",
31
+ "Max Barnash",
32
+ "Ke Zhu",
33
+ "Carlos Palhares",
34
+ "Dan Buch",
27
35
  "Mar\xC3\xADa de Ant\xC3\xB3n",
36
+ "Mathias Meyer",
28
37
  "mariadeanton",
29
- "Alpha",
30
- "Beau Bouchard",
31
- "Corinna Wiesner",
32
- "David Rodr\xC3\xADguez",
33
- "Eugene",
34
- "Eugene Shubin",
35
38
  "Igor Wiedler",
39
+ "David Rodr\xC3\xADguez",
40
+ "Corinna Wiesner",
36
41
  "Joep van Delft",
42
+ "Beau Bouchard",
37
43
  "Stefan Nordhausen",
44
+ "Andreas Tiefenthaler",
45
+ "Thais Camilo and Konstantin Haase",
38
46
  "Tobias Bieniek",
47
+ "Justin Lambert",
48
+ "Eric Herot",
39
49
  "Dominic Jodoin",
40
- "Harald Nordgren",
41
- "HaraldNordgren",
42
- "Igor",
43
- "Jacob Atzen",
44
- "James Nylen",
45
- "Jonas Chromik",
50
+ "Laurent Petit",
51
+ "Maarten van Vliet",
52
+ "Mario Visic",
53
+ "john muhl",
54
+ "Adam Lavin",
46
55
  "Matteo Sumberaz",
56
+ "Matthias Bussonnier",
57
+ "Michael Mior",
47
58
  "Michael S. Fischer",
59
+ "Miro Hron\xC4\x8Dok",
60
+ "Neamar",
48
61
  "Nero Leung",
62
+ "Nicolas Bessi (nbessi)",
49
63
  "Peter Bengtsson",
64
+ "Daniel Chatfield",
65
+ "Benjamin Manns",
66
+ "Rapha\xC3\xABl Pinson",
67
+ "Basarat Ali Syed",
68
+ "Rob Hoelz",
50
69
  "Robert Van Voorhees",
51
- "Simon Cropp"
70
+ "Tobias Wilken",
71
+ "Jacob Atzen",
72
+ "Zachary Scott",
73
+ "Adrien Brault",
74
+ "jeffdh",
75
+ "HaraldNordgren",
76
+ "Igor",
77
+ "Zachary Gershman",
78
+ "Jacob Burkhart",
79
+ "Harald Nordgren",
80
+ "Joe Rafaniello",
81
+ "Jon-Erik Schneiderhan",
82
+ "Jonas Chromik",
83
+ "Jonne Ha\xC3\x9F",
84
+ "George Millo",
85
+ "Julia S.Simon"
52
86
  ]
53
87
 
54
88
  # generated from git shortlog -sne
55
89
  s.email = [
56
- "asari.ruby@gmail.com",
57
90
  "konstantin.mailinglists@googlemail.com",
58
- "piotrm@travis-ci.org",
91
+ "asari.ruby@gmail.com",
92
+ "j@zatigo.com",
93
+ "aa1ronham@gmail.com",
94
+ "me@henrikhodne.com",
59
95
  "b@chromatin.ca",
96
+ "henrik@hodne.io",
97
+ "p.morsou@gmail.com",
60
98
  "chrisg@luminal.io",
61
99
  "joe@corcoran.io",
100
+ "peter.van.dijk@netherlabs.nl",
62
101
  "me@svenfuchs.com",
63
102
  "josh.kalderimis@gmail.com",
64
- "kzhu@us.ibm.com",
65
103
  "drogus@gmail.com",
104
+ "i.am@anhero.ru",
66
105
  "renee@travis-ci.org",
106
+ "kzhu@us.ibm.com",
107
+ "piotrm@travis-ci.org",
108
+ "mariadeanton@gmail.com",
67
109
  "aakritigupta@users.noreply.github.com",
110
+ "me@xjunior.me",
111
+ "dan@meatballhat.com",
68
112
  "mariadeanton@gmail.com",
113
+ "meyer@paperplanes.de",
69
114
  "carlad@users.noreply.github.com",
70
- "mariadeanton@gmail.com",
71
- "aakriti@travis-ci.org",
72
- "AlphaWong@users.noreply.github.com",
115
+ "igor@travis-ci.org",
73
116
  "127320+BeauBouchard@users.noreply.github.com",
74
117
  "wiesner@avarteq.de",
75
- "deivid.rodriguez@gmail.com",
76
- "eugene@travis-ci.org",
77
- "51701929+eugene-travis@users.noreply.github.com",
78
- "igor@travis-ci.org",
79
118
  "stefan.nordhausen@immobilienscout24.de",
119
+ "aakriti@travis-ci.org",
120
+ "deivid.rodriguez@gmail.com",
121
+ "dev+narwen+rkh@rkh.im",
80
122
  "tobias.bieniek@gmail.com",
123
+ "at@an-ti.eu",
124
+ "me@jhass.eu",
125
+ "eric.github@herot.com",
126
+ "julia.simon@biicode.com",
127
+ "jlambert@eml.cc",
81
128
  "dominic@travis-ci.com",
129
+ "laurent.petit@gmail.com",
130
+ "maartenvanvliet@gmail.com",
131
+ "mario@mariovisic.com",
132
+ "git@johnmuhl.com",
133
+ "adam@lavoaster.co.uk",
134
+ "gnappoms@gmail.com",
135
+ "bussonniermatthias@gmail.com",
136
+ "chatfielddaniel@gmail.com",
137
+ "mmior@uwaterloo.ca",
138
+ "mfischer@zendesk.com",
139
+ "miro@hroncok.cz",
140
+ "neamar@neamar.fr",
141
+ "neroleung@gmail.com",
142
+ "nbessi@users.noreply.github.com",
143
+ "peterbe@mozilla.com",
144
+ "benmanns@gmail.com",
145
+ "basaratali@gmail.com",
146
+ "raphael.pinson@camptocamp.com",
147
+ "rob@hoelz.ro",
148
+ "rcvanvo@gmail.com",
149
+ "adrien.brault@gmail.com",
150
+ "tw@cloudcontrol.de",
151
+ "pair+zg@pivotallabs.com",
152
+ "e@zzak.io",
153
+ "carla@travis-ci.org",
154
+ "jeffdh@gmail.com",
82
155
  "haraldnordgren@gmail.com",
83
156
  "haraldnordgren@gmail.com",
84
157
  "igorwwwwwwwwwwwwwwwwwwww@users.noreply.github.com",
85
158
  "jatzen@gmail.com",
86
- "jnylen@gmail.com",
159
+ "jburkhart@engineyard.com",
160
+ "georgejulianmillo@gmail.com",
161
+ "jrafanie@users.noreply.github.com",
87
162
  "joep@travis-ci.org",
88
163
  "joepvd@users.noreply.github.com",
89
- "Jonas.Chromik@student.hpi.uni-potsdam.de",
90
- "gnappoms@gmail.com",
91
- "mfischer@zendesk.com",
92
- "neroleung@gmail.com",
93
- "peterbe@mozilla.com",
94
- "rcvanvo@gmail.com",
95
- "simon.cropp@gmail.com",
96
- "carla@travis-ci.org"
164
+ "jon-erik.schneiderhan@meyouhealth.com",
165
+ "Jonas.Chromik@student.hpi.uni-potsdam.de"
97
166
  ]
98
167
 
99
168
  # generated from git ls-files
@@ -245,7 +314,6 @@ Gem::Specification.new do |s|
245
314
  "lib/travis/version.rb",
246
315
  "spec/cli/api_command_spec.rb",
247
316
  "spec/cli/cancel_spec.rb",
248
- "spec/cli/encrypt_file_spec.rb",
249
317
  "spec/cli/encrypt_spec.rb",
250
318
  "spec/cli/endpoint_spec.rb",
251
319
  "spec/cli/help_spec.rb",
metadata CHANGED
@@ -1,47 +1,81 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: travis
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.8.12.travis.1136.9
4
+ version: 1.8.12
5
5
  platform: ruby
6
6
  authors:
7
- - Hiro Asari
8
7
  - Konstantin Haase
9
- - Piotr Milcarz
8
+ - Hiro Asari
9
+ - Henrik Hodne
10
+ - joshua-anderson
11
+ - Aaron Hill
10
12
  - Buck Doyle
13
+ - Peter Souter
11
14
  - Christopher Grim
12
15
  - Joe Corcoran
13
16
  - Sven Fuchs
14
- - Aakriti Gupta
15
- - Josh Kalderimis
16
- - Ke Zhu
17
+ - Peter van Dijk
17
18
  - Piotr Sarnacki
18
- - Renée Hendricksen
19
+ - Josh Kalderimis
20
+ - Aakriti Gupta
19
21
  - carlad
22
+ - Piotr Milcarz
23
+ - Renée Hendricksen
24
+ - Max Barnash
25
+ - Ke Zhu
26
+ - Carlos Palhares
27
+ - Dan Buch
20
28
  - María de Antón
29
+ - Mathias Meyer
21
30
  - mariadeanton
22
- - Alpha
23
- - Beau Bouchard
24
- - Corinna Wiesner
25
- - David Rodríguez
26
- - Eugene
27
- - Eugene Shubin
28
31
  - Igor Wiedler
32
+ - David Rodríguez
33
+ - Corinna Wiesner
29
34
  - Joep van Delft
35
+ - Beau Bouchard
30
36
  - Stefan Nordhausen
37
+ - Andreas Tiefenthaler
38
+ - Thais Camilo and Konstantin Haase
31
39
  - Tobias Bieniek
40
+ - Justin Lambert
41
+ - Eric Herot
32
42
  - Dominic Jodoin
33
- - Harald Nordgren
34
- - HaraldNordgren
35
- - Igor
36
- - Jacob Atzen
37
- - James Nylen
38
- - Jonas Chromik
43
+ - Laurent Petit
44
+ - Maarten van Vliet
45
+ - Mario Visic
46
+ - john muhl
47
+ - Adam Lavin
39
48
  - Matteo Sumberaz
49
+ - Matthias Bussonnier
50
+ - Michael Mior
40
51
  - Michael S. Fischer
52
+ - Miro Hrončok
53
+ - Neamar
41
54
  - Nero Leung
55
+ - Nicolas Bessi (nbessi)
42
56
  - Peter Bengtsson
57
+ - Daniel Chatfield
58
+ - Benjamin Manns
59
+ - Raphaël Pinson
60
+ - Basarat Ali Syed
61
+ - Rob Hoelz
43
62
  - Robert Van Voorhees
44
- - Simon Cropp
63
+ - Tobias Wilken
64
+ - Jacob Atzen
65
+ - Zachary Scott
66
+ - Adrien Brault
67
+ - jeffdh
68
+ - HaraldNordgren
69
+ - Igor
70
+ - Zachary Gershman
71
+ - Jacob Burkhart
72
+ - Harald Nordgren
73
+ - Joe Rafaniello
74
+ - Jon-Erik Schneiderhan
75
+ - Jonas Chromik
76
+ - Jonne Haß
77
+ - George Millo
78
+ - Julia S.Simon
45
79
  autorequire:
46
80
  bindir: bin
47
81
  cert_chain: []
@@ -229,47 +263,82 @@ dependencies:
229
263
  version: '0.6'
230
264
  description: CLI and Ruby client library for Travis CI
231
265
  email:
232
- - asari.ruby@gmail.com
233
266
  - konstantin.mailinglists@googlemail.com
234
- - piotrm@travis-ci.org
267
+ - asari.ruby@gmail.com
268
+ - j@zatigo.com
269
+ - aa1ronham@gmail.com
270
+ - me@henrikhodne.com
235
271
  - b@chromatin.ca
272
+ - henrik@hodne.io
273
+ - p.morsou@gmail.com
236
274
  - chrisg@luminal.io
237
275
  - joe@corcoran.io
276
+ - peter.van.dijk@netherlabs.nl
238
277
  - me@svenfuchs.com
239
278
  - josh.kalderimis@gmail.com
240
- - kzhu@us.ibm.com
241
279
  - drogus@gmail.com
280
+ - i.am@anhero.ru
242
281
  - renee@travis-ci.org
282
+ - kzhu@us.ibm.com
283
+ - piotrm@travis-ci.org
284
+ - mariadeanton@gmail.com
243
285
  - aakritigupta@users.noreply.github.com
286
+ - me@xjunior.me
287
+ - dan@meatballhat.com
244
288
  - mariadeanton@gmail.com
289
+ - meyer@paperplanes.de
245
290
  - carlad@users.noreply.github.com
246
- - mariadeanton@gmail.com
247
- - aakriti@travis-ci.org
248
- - AlphaWong@users.noreply.github.com
291
+ - igor@travis-ci.org
249
292
  - 127320+BeauBouchard@users.noreply.github.com
250
293
  - wiesner@avarteq.de
251
- - deivid.rodriguez@gmail.com
252
- - eugene@travis-ci.org
253
- - 51701929+eugene-travis@users.noreply.github.com
254
- - igor@travis-ci.org
255
294
  - stefan.nordhausen@immobilienscout24.de
295
+ - aakriti@travis-ci.org
296
+ - deivid.rodriguez@gmail.com
297
+ - dev+narwen+rkh@rkh.im
256
298
  - tobias.bieniek@gmail.com
299
+ - at@an-ti.eu
300
+ - me@jhass.eu
301
+ - eric.github@herot.com
302
+ - julia.simon@biicode.com
303
+ - jlambert@eml.cc
257
304
  - dominic@travis-ci.com
305
+ - laurent.petit@gmail.com
306
+ - maartenvanvliet@gmail.com
307
+ - mario@mariovisic.com
308
+ - git@johnmuhl.com
309
+ - adam@lavoaster.co.uk
310
+ - gnappoms@gmail.com
311
+ - bussonniermatthias@gmail.com
312
+ - chatfielddaniel@gmail.com
313
+ - mmior@uwaterloo.ca
314
+ - mfischer@zendesk.com
315
+ - miro@hroncok.cz
316
+ - neamar@neamar.fr
317
+ - neroleung@gmail.com
318
+ - nbessi@users.noreply.github.com
319
+ - peterbe@mozilla.com
320
+ - benmanns@gmail.com
321
+ - basaratali@gmail.com
322
+ - raphael.pinson@camptocamp.com
323
+ - rob@hoelz.ro
324
+ - rcvanvo@gmail.com
325
+ - adrien.brault@gmail.com
326
+ - tw@cloudcontrol.de
327
+ - pair+zg@pivotallabs.com
328
+ - e@zzak.io
329
+ - carla@travis-ci.org
330
+ - jeffdh@gmail.com
258
331
  - haraldnordgren@gmail.com
259
332
  - haraldnordgren@gmail.com
260
333
  - igorwwwwwwwwwwwwwwwwwwww@users.noreply.github.com
261
334
  - jatzen@gmail.com
262
- - jnylen@gmail.com
335
+ - jburkhart@engineyard.com
336
+ - georgejulianmillo@gmail.com
337
+ - jrafanie@users.noreply.github.com
263
338
  - joep@travis-ci.org
264
339
  - joepvd@users.noreply.github.com
340
+ - jon-erik.schneiderhan@meyouhealth.com
265
341
  - Jonas.Chromik@student.hpi.uni-potsdam.de
266
- - gnappoms@gmail.com
267
- - mfischer@zendesk.com
268
- - neroleung@gmail.com
269
- - peterbe@mozilla.com
270
- - rcvanvo@gmail.com
271
- - simon.cropp@gmail.com
272
- - carla@travis-ci.org
273
342
  executables:
274
343
  - travis
275
344
  extensions: []
@@ -422,7 +491,6 @@ files:
422
491
  - lib/travis/version.rb
423
492
  - spec/cli/api_command_spec.rb
424
493
  - spec/cli/cancel_spec.rb
425
- - spec/cli/encrypt_file_spec.rb
426
494
  - spec/cli/encrypt_spec.rb
427
495
  - spec/cli/endpoint_spec.rb
428
496
  - spec/cli/help_spec.rb
@@ -474,12 +542,11 @@ required_ruby_version: !ruby/object:Gem::Requirement
474
542
  version: '0'
475
543
  required_rubygems_version: !ruby/object:Gem::Requirement
476
544
  requirements:
477
- - - ">"
545
+ - - ">="
478
546
  - !ruby/object:Gem::Version
479
- version: 1.3.1
547
+ version: '0'
480
548
  requirements: []
481
- rubyforge_project:
482
- rubygems_version: 2.7.7
549
+ rubygems_version: 3.0.3
483
550
  signing_key:
484
551
  specification_version: 4
485
552
  summary: Travis CI client
@@ -1,26 +0,0 @@
1
- require 'spec_helper'
2
- require 'fileutils'
3
- require 'digest'
4
-
5
- describe Travis::CLI::EncryptFile do
6
- CMD_TARGET = 'README.md'
7
-
8
- before :each do
9
- Digest.stub(:hexencode).and_return "randomhex" # to avoid relying on Dir.pwd value for hex
10
- end
11
-
12
- after :each do
13
- FileUtils.rm_f "#{CMD_TARGET}.enc"
14
- end
15
-
16
- example "travis encrypt-file #{CMD_TARGET}" do
17
- run_cli('encrypt-file', CMD_TARGET).should be_success
18
- File.exists?("#{CMD_TARGET}.enc").should be true
19
- end
20
-
21
- example "travis encrypt-file #{CMD_TARGET} -a" do
22
- run_cli('encrypt-file', CMD_TARGET, '-a') { |i| i.puts "n" }.should be_success
23
- stdout.should match /Overwrite the config file/
24
- File.exists?("#{CMD_TARGET}.enc").should be true
25
- end
26
- end