travis 1.8.14.travis.1200.9 → 1.9.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (6) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +28 -1
  3. data/Rakefile +15 -2
  4. data/lib/travis/version.rb +1 -1
  5. data/travis.gemspec +62 -12
  6. metadata +66 -17
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 833b8b2f95a9aeef01edbebdb438bdfde444d6ecc49d76834597e1c72895e31f
4
- data.tar.gz: 42e0e8ad21b4379930677c59176ed2cf954552a481c883f60677003b53ccdfdf
3
+ metadata.gz: 7f08e79eb12d1a44915a9f09ff6737dfc48461e86a1179d7f1382c684d78c0a4
4
+ data.tar.gz: 849ed781dc18ed010e5c78e917fd71bb67f6663d0708e55eb0625f1976a515ed
5
5
  SHA512:
6
- metadata.gz: e1b75c5766b104e5fb28614bd5b4b83a869476290322e39d562401d6afbabfd1353439946662428c30eb88bfb814b01742e626f6192bcb6bcf84a2b4cb5f4c58
7
- data.tar.gz: 616f80dfc7659fd263dfa93fd473f4ab623ddba78207d3f0ee8a47159c13e5ce3a96da0d839349fdd1ada2368eec5cc270afdebd93b802eb1de9707f9a211cf6
6
+ metadata.gz: 9f13e27fa1621585ae1064c2756b882893e1a53138c47361064742fae470072bdd955eea4c4e0bae6706792a9b0e6ad7e04d108f3d3a2a25dfd382497c0f1e30
7
+ data.tar.gz: 7386b36d9bd13a2134edcfc4820f33cd2d1c85a179383b146403fe187511ba991b98e930cd6091f8e8deecc8618410f0764945d2723f7531cefbba14e3c6a8ba
data/README.md CHANGED
@@ -2016,7 +2016,7 @@ On Windows:
2016
2016
  Now make sure everything is working:
2017
2017
 
2018
2018
  $ travis version
2019
- 1.8.13
2019
+ 1.9.0
2020
2020
 
2021
2021
  See also [Note on Ubuntu](#ubuntu) below.
2022
2022
 
@@ -2124,6 +2124,33 @@ If you have the old `travis-cli` gem installed, you should `gem uninstall travis
2124
2124
 
2125
2125
  ## Version History
2126
2126
 
2127
+ **1.9.0**
2128
+
2129
+ * Require Ruby 2.3 and up
2130
+ * Add Ruby 2.7 support
2131
+
2132
+ * Validate `-r` argument form https://github.com/travis-ci/travis.rb/issues/281
2133
+ * Verify `.travis.yml` is valid before sending to the server https://github.com/travis-ci/travis.rb/issues/706
2134
+ * Skip version check if rubygems.org is down https://github.com/travis-ci/travis.rb/issues/246
2135
+ * Documentation updates
2136
+ https://github.com/travis-ci/travis.rb/pull/641
2137
+ https://github.com/travis-ci/travis.rb/pull/567
2138
+ https://github.com/travis-ci/travis.rb/pull/446
2139
+ https://github.com/travis-ci/travis.rb/pull/363
2140
+ https://github.com/travis-ci/travis.rb/pull/665
2141
+ https://github.com/travis-ci/travis.rb/pull/737
2142
+ * Fix `json` dependency https://github.com/travis-ci/travis.rb/issues/508
2143
+ * Add `bash` template https://github.com/travis-ci/travis.rb/pull/332
2144
+ * Add `elixir` template https://github.com/travis-ci/travis.rb/pull/471
2145
+ * Hardcode `pgrep` path https://github.com/travis-ci/travis.rb/pull/570
2146
+ * Fix `travis restart` command https://github.com/travis-ci/travis.rb/pull/416
2147
+ * Define `skip_cleanup` for `setup` command if using `dpl` v1 https://github.com/travis-ci/travis.rb/pull/704
2148
+ * Prevent `.bashrc` from failing when init file is not present https://github.com/travis-ci/travis.rb/pull/595
2149
+
2150
+ **1.8.13** (April 7, 2020)
2151
+
2152
+ * Add support for [`gh`](https://github.com/travis-ci/gh) [0.16.0](https://rubygems.org/gems/gh/versions/0.16.0)
2153
+
2127
2154
  **1.8.12** (March 23, 2020)
2128
2155
 
2129
2156
  * Fix `encrypt-file` command (https://github.com/travis-ci/travis.rb/pull/715)
data/Rakefile CHANGED
@@ -14,8 +14,8 @@ task :update => :completion do
14
14
 
15
15
  # fetch data
16
16
  fields = {
17
- :authors => `git shortlog -sn`.b.scan(/[^\d\s].*/),
18
- :email => `git shortlog -sne`.b.scan(/[^<]+@[^>]+/),
17
+ :authors => sort_by_commits_alpha(`git shortlog -sn`.b, /[^\d\s].*/).uniq,
18
+ :email => sort_by_commits_alpha(`git shortlog -sne`.b, /[^<]+@[^>]+/).uniq,
19
19
  :files => `git ls-files`.b.split("\n").reject { |f| f =~ /^(\.|Gemfile)/ }
20
20
  }
21
21
 
@@ -62,3 +62,16 @@ task :gemspec => :update
62
62
  task :default => :spec
63
63
  task :default => :gemspec unless windows or RUBY_VERSION < '2.0'
64
64
  task :test => :spec
65
+
66
+ def sort_by_commits_alpha(shortlog_output, patt)
67
+ shortlog_output.split("\n").sort do |a,b|
68
+ a_comm, a_name = a.strip.split(/\t/)
69
+ b_comm, b_name = b.strip.split(/\t/)
70
+
71
+ if a_comm.to_i != b_comm.to_i
72
+ a_comm.to_i <=> b_comm.to_i
73
+ else
74
+ b_name <=> a_name # we will reserve this sort afterwards, so we need the opposite order here
75
+ end
76
+ end.join("\n").scan(patt).reverse
77
+ end
@@ -1,3 +1,3 @@
1
1
  module Travis
2
- VERSION = '1.8.13'
2
+ VERSION = '1.9.0'
3
3
  end
data/travis.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
  Gem::Specification.new do |s|
3
3
  # general info
4
4
  s.name = "travis"
5
- s.version = "1.8.13"
5
+ s.version = "1.9.0"
6
6
  s.required_ruby_version = ">= 2.3.0"
7
7
  s.description = "CLI and Ruby client library for Travis CI"
8
8
  s.homepage = "https://github.com/travis-ci/travis.rb"
@@ -12,20 +12,29 @@ Gem::Specification.new do |s|
12
12
 
13
13
  # generated from git shortlog -sn
14
14
  s.authors = [
15
- "Hiro Asari",
16
15
  "Konstantin Haase",
16
+ "Hiro Asari",
17
+ "Henrik Hodne",
18
+ "joshua-anderson",
19
+ "Aaron Hill",
17
20
  "Piotr Milcarz",
18
21
  "Buck Doyle",
22
+ "Peter Souter",
19
23
  "Christopher Grim",
20
24
  "Joe Corcoran",
25
+ "Peter van Dijk",
21
26
  "Sven Fuchs",
22
27
  "Aakriti Gupta",
23
28
  "Josh Kalderimis",
24
- "Ke Zhu",
25
29
  "Piotr Sarnacki",
30
+ "Ke Zhu",
31
+ "Max Barnash",
26
32
  "Ren\xC3\xA9e Hendricksen",
27
33
  "carlad",
34
+ "Carlos Palhares",
35
+ "Dan Buch",
28
36
  "Mar\xC3\xADa de Ant\xC3\xB3n",
37
+ "Mathias Meyer",
29
38
  "Matt Toothman",
30
39
  "mariadeanton",
31
40
  "techgaun",
@@ -33,7 +42,6 @@ Gem::Specification.new do |s|
33
42
  "Andreas Tiefenthaler",
34
43
  "Beau Bouchard",
35
44
  "Corinna Wiesner",
36
- "Dan Buch",
37
45
  "David Rodr\xC3\xADguez",
38
46
  "Eugene",
39
47
  "Eugene Shubin",
@@ -41,13 +49,17 @@ Gem::Specification.new do |s|
41
49
  "Ivan Pozdeev",
42
50
  "Joep van Delft",
43
51
  "Stefan Nordhausen",
52
+ "Thais Camilo and Konstantin Haase",
44
53
  "Tobias Bieniek",
45
- "joshua-anderson",
46
54
  "Adam Baxter",
55
+ "Adam Lavin",
56
+ "Adrien Brault",
47
57
  "Alfie John",
48
58
  "Basarat Ali Syed",
59
+ "Benjamin Manns",
49
60
  "Christian H\xC3\xB6ltje",
50
61
  "Dani Hodovic",
62
+ "Daniel Chatfield",
51
63
  "Dominic Jodoin",
52
64
  "Eric Herot",
53
65
  "George Millo",
@@ -57,103 +69,141 @@ Gem::Specification.new do |s|
57
69
  "Igor",
58
70
  "Iulian Onofrei",
59
71
  "Jacob Atzen",
72
+ "Jacob Burkhart",
60
73
  "James Nylen",
61
74
  "Joe Rafaniello",
62
75
  "Jon-Erik Schneiderhan",
63
76
  "Jonas Chromik",
77
+ "Jonne Ha\xC3\x9F",
64
78
  "Julia S.Simon",
79
+ "Justin Lambert",
80
+ "Laurent Petit",
81
+ "Maarten van Vliet",
82
+ "Mario Visic",
65
83
  "Matt",
66
84
  "Matteo Sumberaz",
67
85
  "Matthias Bussonnier",
68
86
  "Michael Mior",
69
87
  "Michael S. Fischer",
88
+ "Miro Hron\xC4\x8Dok",
89
+ "Neamar",
70
90
  "Nero Leung",
71
91
  "Nicolas Bessi (nbessi)",
72
92
  "Peter Bengtsson",
73
93
  "Peter Drake",
94
+ "Rapha\xC3\xABl Pinson",
74
95
  "Rob Hoelz",
75
96
  "Robert Grider",
76
97
  "Robert Van Voorhees",
77
98
  "Simon Cropp",
78
99
  "Titus",
79
100
  "Titus Wormer",
101
+ "Tobias Wilken",
102
+ "Zachary Gershman",
103
+ "Zachary Scott",
80
104
  "designerror",
81
105
  "ia",
106
+ "jeffdh",
107
+ "john muhl",
82
108
  "slewt"
83
109
  ]
84
110
 
85
111
  # generated from git shortlog -sne
86
112
  s.email = [
87
- "asari.ruby@gmail.com",
88
113
  "konstantin.mailinglists@googlemail.com",
114
+ "asari.ruby@gmail.com",
115
+ "j@zatigo.com",
116
+ "aa1ronham@gmail.com",
89
117
  "piotrm@travis-ci.org",
118
+ "me@henrikhodne.com",
90
119
  "b@chromatin.ca",
120
+ "henrik@hodne.io",
121
+ "p.morsou@gmail.com",
91
122
  "chrisg@luminal.io",
92
123
  "joe@corcoran.io",
124
+ "peter.van.dijk@netherlabs.nl",
93
125
  "me@svenfuchs.com",
94
126
  "josh.kalderimis@gmail.com",
95
- "kzhu@us.ibm.com",
96
127
  "drogus@gmail.com",
128
+ "kzhu@us.ibm.com",
129
+ "i.am@anhero.ru",
97
130
  "renee@travis-ci.org",
98
131
  "aakritigupta@users.noreply.github.com",
132
+ "me@xjunior.me",
133
+ "dan@meatballhat.com",
99
134
  "mariadeanton@gmail.com",
135
+ "meyer@paperplanes.de",
100
136
  "matt.toothman@aver.io",
101
137
  "carlad@users.noreply.github.com",
102
- "mariadeanton@gmail.com",
103
138
  "coolsamar207@gmail.com",
104
139
  "aakriti@travis-ci.org",
105
140
  "AlphaWong@users.noreply.github.com",
106
141
  "at@an-ti.eu",
107
142
  "127320+BeauBouchard@users.noreply.github.com",
108
143
  "wiesner@avarteq.de",
109
- "dan@meatballhat.com",
110
144
  "deivid.rodriguez@gmail.com",
111
145
  "eugene@travis-ci.org",
112
146
  "51701929+eugene-travis@users.noreply.github.com",
113
147
  "igor@travis-ci.org",
114
148
  "vano@mail.mipt.ru",
115
149
  "stefan.nordhausen@immobilienscout24.de",
150
+ "dev+narwen+rkh@rkh.im",
116
151
  "tobias.bieniek@gmail.com",
117
- "j@zatigo.com",
118
152
  "github@voltagex.org",
153
+ "adam@lavoaster.co.uk",
154
+ "adrien.brault@gmail.com",
119
155
  "33c6c91f3bb4a391082e8a29642cafaf@alfie.wtf",
120
156
  "basaratali@gmail.com",
157
+ "benmanns@gmail.com",
121
158
  "docwhat@gerf.org",
122
159
  "danihodovic@users.noreply.github.com",
160
+ "chatfielddaniel@gmail.com",
123
161
  "dominic@travis-ci.com",
124
162
  "eric.github@herot.com",
125
163
  "georgejulianmillo@gmail.com",
126
164
  "gunter@grodotzki.co.za",
127
165
  "haraldnordgren@gmail.com",
128
- "haraldnordgren@gmail.com",
129
166
  "igorwwwwwwwwwwwwwwwwwwww@users.noreply.github.com",
130
167
  "6d0847b9@opayq.com",
131
168
  "jatzen@gmail.com",
169
+ "jburkhart@engineyard.com",
132
170
  "jnylen@gmail.com",
133
171
  "jrafanie@users.noreply.github.com",
134
172
  "joep@travis-ci.org",
135
173
  "joepvd@users.noreply.github.com",
136
174
  "jon-erik.schneiderhan@meyouhealth.com",
137
175
  "Jonas.Chromik@student.hpi.uni-potsdam.de",
176
+ "me@jhass.eu",
138
177
  "julia.simon@biicode.com",
178
+ "jlambert@eml.cc",
179
+ "laurent.petit@gmail.com",
180
+ "maartenvanvliet@gmail.com",
181
+ "mario@mariovisic.com",
139
182
  "mtoothman@users.noreply.github.com",
140
183
  "gnappoms@gmail.com",
141
184
  "bussonniermatthias@gmail.com",
142
185
  "mmior@uwaterloo.ca",
143
186
  "mfischer@zendesk.com",
187
+ "miro@hroncok.cz",
188
+ "neamar@neamar.fr",
144
189
  "neroleung@gmail.com",
145
190
  "nbessi@users.noreply.github.com",
146
191
  "peterbe@mozilla.com",
147
192
  "peter.drake@acquia.com",
193
+ "raphael.pinson@camptocamp.com",
148
194
  "rob@hoelz.ro",
149
195
  "robert.grider@northwestern.edu",
150
196
  "rcvanvo@gmail.com",
151
197
  "simon.cropp@gmail.com",
152
198
  "tituswormer@gmail.com",
153
- "tituswormer@gmail.com",
199
+ "tw@cloudcontrol.de",
200
+ "pair+zg@pivotallabs.com",
201
+ "e@zzak.io",
154
202
  "carla@travis-ci.org",
155
203
  "designerror@yandex.ru",
156
204
  "isaac.ardis@gmail.com",
205
+ "jeffdh@gmail.com",
206
+ "git@johnmuhl.com",
157
207
  "leland@lcweathers.net"
158
208
  ]
159
209
 
metadata CHANGED
@@ -1,23 +1,32 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: travis
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.8.14.travis.1200.9
4
+ version: 1.9.0
5
5
  platform: ruby
6
6
  authors:
7
- - Hiro Asari
8
7
  - Konstantin Haase
8
+ - Hiro Asari
9
+ - Henrik Hodne
10
+ - joshua-anderson
11
+ - Aaron Hill
9
12
  - Piotr Milcarz
10
13
  - Buck Doyle
14
+ - Peter Souter
11
15
  - Christopher Grim
12
16
  - Joe Corcoran
17
+ - Peter van Dijk
13
18
  - Sven Fuchs
14
19
  - Aakriti Gupta
15
20
  - Josh Kalderimis
16
- - Ke Zhu
17
21
  - Piotr Sarnacki
22
+ - Ke Zhu
23
+ - Max Barnash
18
24
  - Renée Hendricksen
19
25
  - carlad
26
+ - Carlos Palhares
27
+ - Dan Buch
20
28
  - María de Antón
29
+ - Mathias Meyer
21
30
  - Matt Toothman
22
31
  - mariadeanton
23
32
  - techgaun
@@ -25,7 +34,6 @@ authors:
25
34
  - Andreas Tiefenthaler
26
35
  - Beau Bouchard
27
36
  - Corinna Wiesner
28
- - Dan Buch
29
37
  - David Rodríguez
30
38
  - Eugene
31
39
  - Eugene Shubin
@@ -33,13 +41,17 @@ authors:
33
41
  - Ivan Pozdeev
34
42
  - Joep van Delft
35
43
  - Stefan Nordhausen
44
+ - Thais Camilo and Konstantin Haase
36
45
  - Tobias Bieniek
37
- - joshua-anderson
38
46
  - Adam Baxter
47
+ - Adam Lavin
48
+ - Adrien Brault
39
49
  - Alfie John
40
50
  - Basarat Ali Syed
51
+ - Benjamin Manns
41
52
  - Christian Höltje
42
53
  - Dani Hodovic
54
+ - Daniel Chatfield
43
55
  - Dominic Jodoin
44
56
  - Eric Herot
45
57
  - George Millo
@@ -49,33 +61,47 @@ authors:
49
61
  - Igor
50
62
  - Iulian Onofrei
51
63
  - Jacob Atzen
64
+ - Jacob Burkhart
52
65
  - James Nylen
53
66
  - Joe Rafaniello
54
67
  - Jon-Erik Schneiderhan
55
68
  - Jonas Chromik
69
+ - Jonne Haß
56
70
  - Julia S.Simon
71
+ - Justin Lambert
72
+ - Laurent Petit
73
+ - Maarten van Vliet
74
+ - Mario Visic
57
75
  - Matt
58
76
  - Matteo Sumberaz
59
77
  - Matthias Bussonnier
60
78
  - Michael Mior
61
79
  - Michael S. Fischer
80
+ - Miro Hrončok
81
+ - Neamar
62
82
  - Nero Leung
63
83
  - Nicolas Bessi (nbessi)
64
84
  - Peter Bengtsson
65
85
  - Peter Drake
86
+ - Raphaël Pinson
66
87
  - Rob Hoelz
67
88
  - Robert Grider
68
89
  - Robert Van Voorhees
69
90
  - Simon Cropp
70
91
  - Titus
71
92
  - Titus Wormer
93
+ - Tobias Wilken
94
+ - Zachary Gershman
95
+ - Zachary Scott
72
96
  - designerror
73
97
  - ia
98
+ - jeffdh
99
+ - john muhl
74
100
  - slewt
75
101
  autorequire:
76
102
  bindir: bin
77
103
  cert_chain: []
78
- date: 2020-04-24 00:00:00.000000000 Z
104
+ date: 2020-04-27 00:00:00.000000000 Z
79
105
  dependencies:
80
106
  - !ruby/object:Gem::Dependency
81
107
  name: faraday
@@ -253,76 +279,100 @@ dependencies:
253
279
  version: '0.6'
254
280
  description: CLI and Ruby client library for Travis CI
255
281
  email:
256
- - asari.ruby@gmail.com
257
282
  - konstantin.mailinglists@googlemail.com
283
+ - asari.ruby@gmail.com
284
+ - j@zatigo.com
285
+ - aa1ronham@gmail.com
258
286
  - piotrm@travis-ci.org
287
+ - me@henrikhodne.com
259
288
  - b@chromatin.ca
289
+ - henrik@hodne.io
290
+ - p.morsou@gmail.com
260
291
  - chrisg@luminal.io
261
292
  - joe@corcoran.io
293
+ - peter.van.dijk@netherlabs.nl
262
294
  - me@svenfuchs.com
263
295
  - josh.kalderimis@gmail.com
264
- - kzhu@us.ibm.com
265
296
  - drogus@gmail.com
297
+ - kzhu@us.ibm.com
298
+ - i.am@anhero.ru
266
299
  - renee@travis-ci.org
267
300
  - aakritigupta@users.noreply.github.com
301
+ - me@xjunior.me
302
+ - dan@meatballhat.com
268
303
  - mariadeanton@gmail.com
304
+ - meyer@paperplanes.de
269
305
  - matt.toothman@aver.io
270
306
  - carlad@users.noreply.github.com
271
- - mariadeanton@gmail.com
272
307
  - coolsamar207@gmail.com
273
308
  - aakriti@travis-ci.org
274
309
  - AlphaWong@users.noreply.github.com
275
310
  - at@an-ti.eu
276
311
  - 127320+BeauBouchard@users.noreply.github.com
277
312
  - wiesner@avarteq.de
278
- - dan@meatballhat.com
279
313
  - deivid.rodriguez@gmail.com
280
314
  - eugene@travis-ci.org
281
315
  - 51701929+eugene-travis@users.noreply.github.com
282
316
  - igor@travis-ci.org
283
317
  - vano@mail.mipt.ru
284
318
  - stefan.nordhausen@immobilienscout24.de
319
+ - dev+narwen+rkh@rkh.im
285
320
  - tobias.bieniek@gmail.com
286
- - j@zatigo.com
287
321
  - github@voltagex.org
322
+ - adam@lavoaster.co.uk
323
+ - adrien.brault@gmail.com
288
324
  - 33c6c91f3bb4a391082e8a29642cafaf@alfie.wtf
289
325
  - basaratali@gmail.com
326
+ - benmanns@gmail.com
290
327
  - docwhat@gerf.org
291
328
  - danihodovic@users.noreply.github.com
329
+ - chatfielddaniel@gmail.com
292
330
  - dominic@travis-ci.com
293
331
  - eric.github@herot.com
294
332
  - georgejulianmillo@gmail.com
295
333
  - gunter@grodotzki.co.za
296
334
  - haraldnordgren@gmail.com
297
- - haraldnordgren@gmail.com
298
335
  - igorwwwwwwwwwwwwwwwwwwww@users.noreply.github.com
299
336
  - 6d0847b9@opayq.com
300
337
  - jatzen@gmail.com
338
+ - jburkhart@engineyard.com
301
339
  - jnylen@gmail.com
302
340
  - jrafanie@users.noreply.github.com
303
341
  - joep@travis-ci.org
304
342
  - joepvd@users.noreply.github.com
305
343
  - jon-erik.schneiderhan@meyouhealth.com
306
344
  - Jonas.Chromik@student.hpi.uni-potsdam.de
345
+ - me@jhass.eu
307
346
  - julia.simon@biicode.com
347
+ - jlambert@eml.cc
348
+ - laurent.petit@gmail.com
349
+ - maartenvanvliet@gmail.com
350
+ - mario@mariovisic.com
308
351
  - mtoothman@users.noreply.github.com
309
352
  - gnappoms@gmail.com
310
353
  - bussonniermatthias@gmail.com
311
354
  - mmior@uwaterloo.ca
312
355
  - mfischer@zendesk.com
356
+ - miro@hroncok.cz
357
+ - neamar@neamar.fr
313
358
  - neroleung@gmail.com
314
359
  - nbessi@users.noreply.github.com
315
360
  - peterbe@mozilla.com
316
361
  - peter.drake@acquia.com
362
+ - raphael.pinson@camptocamp.com
317
363
  - rob@hoelz.ro
318
364
  - robert.grider@northwestern.edu
319
365
  - rcvanvo@gmail.com
320
366
  - simon.cropp@gmail.com
321
367
  - tituswormer@gmail.com
322
- - tituswormer@gmail.com
368
+ - tw@cloudcontrol.de
369
+ - pair+zg@pivotallabs.com
370
+ - e@zzak.io
323
371
  - carla@travis-ci.org
324
372
  - designerror@yandex.ru
325
373
  - isaac.ardis@gmail.com
374
+ - jeffdh@gmail.com
375
+ - git@johnmuhl.com
326
376
  - leland@lcweathers.net
327
377
  executables:
328
378
  - travis
@@ -531,12 +581,11 @@ required_ruby_version: !ruby/object:Gem::Requirement
531
581
  version: 2.3.0
532
582
  required_rubygems_version: !ruby/object:Gem::Requirement
533
583
  requirements:
534
- - - ">"
584
+ - - ">="
535
585
  - !ruby/object:Gem::Version
536
- version: 1.3.1
586
+ version: '0'
537
587
  requirements: []
538
- rubyforge_project:
539
- rubygems_version: 2.7.7
588
+ rubygems_version: 3.1.2
540
589
  signing_key:
541
590
  specification_version: 4
542
591
  summary: Travis CI client