gitlab-qa 3.1.1 → 3.2.0
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/.gitlab-ci.yml +54 -54
- data/exe/gitlab-qa +1 -0
- data/lib/gitlab/qa/runtime/env.rb +9 -1
- data/lib/gitlab/qa/version.rb +1 -1
- metadata +2 -3
- data/bin/qa +0 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 39f9976db803a4a17fb0400c01af1a617a2a16ba8e72d634698e3e1b3e35f5ab
|
4
|
+
data.tar.gz: 1bf716eb3c71ea6f241653920689d3eb3eba228ca1f7476eff8da761154a3701
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4ea7c7c1ff6328d6f20cba58514a7c97edbd7680af2893a885864a0216d842b836e3d2b64936f186ee7cc7219ebe9430f65ecd25a0bb7a42a41be43104e8de09
|
7
|
+
data.tar.gz: a29b655cd50ed7e0cd62a3c388f52a1e652fe3b04c2c404336c26248c34f67023728d2c6da8717b1fbe92c748aa44d2c446532455dff0dc463df9c012f75b939
|
data/.gitlab-ci.yml
CHANGED
@@ -76,28 +76,28 @@ check:rspec:
|
|
76
76
|
|
77
77
|
ce:sanity-framework:
|
78
78
|
script:
|
79
|
-
- ./bin/expect_exit_code_and_text "
|
79
|
+
- ./bin/expect_exit_code_and_text "exe/gitlab-qa Test::Instance::Image ${RELEASE:=CE} -- --tag framework" 1 "2 examples, 1 failure"
|
80
80
|
<<: *test
|
81
81
|
<<: *high-capacity
|
82
82
|
<<: *ce-qa
|
83
83
|
|
84
84
|
ee:sanity-framework:
|
85
85
|
script:
|
86
|
-
- ./bin/expect_exit_code_and_text "
|
86
|
+
- ./bin/expect_exit_code_and_text "exe/gitlab-qa Test::Instance::Image ${RELEASE:=EE} -- --tag framework" 1 "2 examples, 1 failure"
|
87
87
|
<<: *test
|
88
88
|
<<: *high-capacity
|
89
89
|
<<: *ee-qa
|
90
90
|
|
91
91
|
ce:instance:
|
92
92
|
script:
|
93
|
-
-
|
93
|
+
- exe/gitlab-qa Test::Instance::Image ${RELEASE:=CE}
|
94
94
|
<<: *test
|
95
95
|
<<: *high-capacity
|
96
96
|
<<: *ce-qa
|
97
97
|
|
98
98
|
ce:instance-quarantine:
|
99
99
|
script:
|
100
|
-
-
|
100
|
+
- exe/gitlab-qa Test::Instance::Image ${RELEASE:=CE} -- --tag quarantine --tag ~orchestrated
|
101
101
|
<<: *test
|
102
102
|
<<: *high-capacity
|
103
103
|
<<: *ce-qa
|
@@ -105,14 +105,14 @@ ce:instance-quarantine:
|
|
105
105
|
|
106
106
|
ee:instance:
|
107
107
|
script:
|
108
|
-
-
|
108
|
+
- exe/gitlab-qa Test::Instance::Image ${RELEASE:=EE}
|
109
109
|
<<: *test
|
110
110
|
<<: *high-capacity
|
111
111
|
<<: *ee-qa
|
112
112
|
|
113
113
|
ee:instance-quarantine:
|
114
114
|
script:
|
115
|
-
-
|
115
|
+
- exe/gitlab-qa Test::Instance::Image ${RELEASE:=EE} -- --tag quarantine --tag ~orchestrated
|
116
116
|
<<: *test
|
117
117
|
<<: *high-capacity
|
118
118
|
<<: *ee-qa
|
@@ -120,28 +120,28 @@ ee:instance-quarantine:
|
|
120
120
|
|
121
121
|
ce:docker:
|
122
122
|
script:
|
123
|
-
-
|
123
|
+
- exe/gitlab-qa Test::Instance::Image ${RELEASE:=CE} -- --tag docker
|
124
124
|
<<: *test
|
125
125
|
<<: *high-capacity
|
126
126
|
<<: *ce-qa
|
127
127
|
|
128
128
|
ee:docker:
|
129
129
|
script:
|
130
|
-
-
|
130
|
+
- exe/gitlab-qa Test::Instance::Image ${RELEASE:=EE} -- --tag docker
|
131
131
|
<<: *test
|
132
132
|
<<: *high-capacity
|
133
133
|
<<: *ee-qa
|
134
134
|
|
135
135
|
ce:relative_url:
|
136
136
|
script:
|
137
|
-
-
|
137
|
+
- exe/gitlab-qa Test::Instance::RelativeUrl ${RELEASE:=CE}
|
138
138
|
<<: *test
|
139
139
|
<<: *high-capacity
|
140
140
|
<<: *ce-qa
|
141
141
|
|
142
142
|
ce:relative_url-quarantine:
|
143
143
|
script:
|
144
|
-
-
|
144
|
+
- exe/gitlab-qa Test::Instance::RelativeUrl ${RELEASE:=CE} -- --tag quarantine --tag ~orchestrated
|
145
145
|
<<: *test
|
146
146
|
<<: *high-capacity
|
147
147
|
<<: *ce-qa
|
@@ -149,14 +149,14 @@ ce:relative_url-quarantine:
|
|
149
149
|
|
150
150
|
ee:relative_url:
|
151
151
|
script:
|
152
|
-
-
|
152
|
+
- exe/gitlab-qa Test::Instance::RelativeUrl ${RELEASE:=EE}
|
153
153
|
<<: *test
|
154
154
|
<<: *high-capacity
|
155
155
|
<<: *ee-qa
|
156
156
|
|
157
157
|
ee:relative_url-quarantine:
|
158
158
|
script:
|
159
|
-
-
|
159
|
+
- exe/gitlab-qa Test::Instance::RelativeUrl ${RELEASE:=EE} -- --tag quarantine --tag ~orchestrated
|
160
160
|
<<: *test
|
161
161
|
<<: *high-capacity
|
162
162
|
<<: *ee-qa
|
@@ -164,26 +164,26 @@ ee:relative_url-quarantine:
|
|
164
164
|
|
165
165
|
ce:image:
|
166
166
|
script:
|
167
|
-
-
|
167
|
+
- exe/gitlab-qa Test::Omnibus::Image ${RELEASE:=CE}
|
168
168
|
<<: *test
|
169
169
|
<<: *ce-qa
|
170
170
|
|
171
171
|
ee:image:
|
172
172
|
script:
|
173
|
-
-
|
173
|
+
- exe/gitlab-qa Test::Omnibus::Image ${RELEASE:=EE}
|
174
174
|
<<: *test
|
175
175
|
<<: *ee-qa
|
176
176
|
|
177
177
|
ce:update:
|
178
178
|
script:
|
179
|
-
-
|
179
|
+
- exe/gitlab-qa Test::Omnibus::Update ${RELEASE:=CE}
|
180
180
|
<<: *test
|
181
181
|
<<: *high-capacity
|
182
182
|
<<: *ce-qa
|
183
183
|
|
184
184
|
ce:update-quarantine:
|
185
185
|
script:
|
186
|
-
-
|
186
|
+
- exe/gitlab-qa Test::Omnibus::Update ${RELEASE:=CE} ${RELEASE:=CE} -- --tag quarantine --tag ~orchestrated
|
187
187
|
<<: *test
|
188
188
|
<<: *high-capacity
|
189
189
|
<<: *ce-qa
|
@@ -191,14 +191,14 @@ ce:update-quarantine:
|
|
191
191
|
|
192
192
|
ee:update:
|
193
193
|
script:
|
194
|
-
-
|
194
|
+
- exe/gitlab-qa Test::Omnibus::Update ${RELEASE:=EE}
|
195
195
|
<<: *test
|
196
196
|
<<: *high-capacity
|
197
197
|
<<: *ee-qa
|
198
198
|
|
199
199
|
ee:update-quarantine:
|
200
200
|
script:
|
201
|
-
-
|
201
|
+
- exe/gitlab-qa Test::Omnibus::Update ${RELEASE:=EE} ${RELEASE:=EE} -- --tag quarantine --tag ~orchestrated
|
202
202
|
<<: *test
|
203
203
|
<<: *high-capacity
|
204
204
|
<<: *ee-qa
|
@@ -206,14 +206,14 @@ ee:update-quarantine:
|
|
206
206
|
|
207
207
|
ce:upgrade:
|
208
208
|
script:
|
209
|
-
-
|
209
|
+
- exe/gitlab-qa Test::Omnibus::Upgrade
|
210
210
|
<<: *test
|
211
211
|
<<: *high-capacity
|
212
212
|
<<: *only-qa
|
213
213
|
|
214
214
|
ce:upgrade-quarantine:
|
215
215
|
script:
|
216
|
-
-
|
216
|
+
- exe/gitlab-qa Test::Omnibus::Upgrade CE -- --tag quarantine --tag ~orchestrated
|
217
217
|
<<: *test
|
218
218
|
<<: *high-capacity
|
219
219
|
<<: *only-qa
|
@@ -221,14 +221,14 @@ ce:upgrade-quarantine:
|
|
221
221
|
|
222
222
|
ee-previous-to-ce:update:
|
223
223
|
script:
|
224
|
-
-
|
224
|
+
- exe/gitlab-qa Test::Omnibus::Update EE CE
|
225
225
|
<<: *test
|
226
226
|
<<: *high-capacity
|
227
227
|
<<: *only-qa
|
228
228
|
|
229
229
|
ee-previous-to-ce:update-quarantine:
|
230
230
|
script:
|
231
|
-
-
|
231
|
+
- exe/gitlab-qa Test::Omnibus::Update EE CE -- --tag quarantine --tag ~orchestrated
|
232
232
|
<<: *test
|
233
233
|
<<: *high-capacity
|
234
234
|
<<: *only-qa
|
@@ -236,14 +236,14 @@ ee-previous-to-ce:update-quarantine:
|
|
236
236
|
|
237
237
|
ce:mattermost:
|
238
238
|
script:
|
239
|
-
-
|
239
|
+
- exe/gitlab-qa Test::Integration::Mattermost ${RELEASE:=CE}
|
240
240
|
<<: *test
|
241
241
|
<<: *high-capacity
|
242
242
|
<<: *ce-qa
|
243
243
|
|
244
244
|
ce:mattermost-quarantine:
|
245
245
|
script:
|
246
|
-
-
|
246
|
+
- exe/gitlab-qa Test::Integration::Mattermost ${RELEASE:=CE} -- --tag quarantine
|
247
247
|
<<: *test
|
248
248
|
<<: *high-capacity
|
249
249
|
<<: *ce-qa
|
@@ -251,14 +251,14 @@ ce:mattermost-quarantine:
|
|
251
251
|
|
252
252
|
ee:mattermost:
|
253
253
|
script:
|
254
|
-
-
|
254
|
+
- exe/gitlab-qa Test::Integration::Mattermost ${RELEASE:=EE}
|
255
255
|
<<: *test
|
256
256
|
<<: *high-capacity
|
257
257
|
<<: *ee-qa
|
258
258
|
|
259
259
|
ee:mattermost-quarantine:
|
260
260
|
script:
|
261
|
-
-
|
261
|
+
- exe/gitlab-qa Test::Integration::Mattermost ${RELEASE:=EE} -- --tag quarantine
|
262
262
|
<<: *test
|
263
263
|
<<: *high-capacity
|
264
264
|
<<: *ee-qa
|
@@ -266,14 +266,14 @@ ee:mattermost-quarantine:
|
|
266
266
|
|
267
267
|
ee:geo:
|
268
268
|
script:
|
269
|
-
-
|
269
|
+
- exe/gitlab-qa Test::Integration::Geo ${RELEASE:=EE}
|
270
270
|
<<: *test
|
271
271
|
<<: *high-capacity
|
272
272
|
<<: *ee-qa
|
273
273
|
|
274
274
|
ee:geo-quarantine:
|
275
275
|
script:
|
276
|
-
-
|
276
|
+
- exe/gitlab-qa Test::Integration::Geo ${RELEASE:=EE} -- --tag quarantine
|
277
277
|
<<: *test
|
278
278
|
<<: *high-capacity
|
279
279
|
<<: *ee-qa
|
@@ -281,14 +281,14 @@ ee:geo-quarantine:
|
|
281
281
|
|
282
282
|
ce:ldap_no_tls:
|
283
283
|
script:
|
284
|
-
-
|
284
|
+
- exe/gitlab-qa Test::Integration::LDAPNoTLS ${RELEASE:=CE}
|
285
285
|
<<: *test
|
286
286
|
<<: *high-capacity
|
287
287
|
<<: *ce-qa
|
288
288
|
|
289
289
|
ce:ldap_no_tls-quarantine:
|
290
290
|
script:
|
291
|
-
-
|
291
|
+
- exe/gitlab-qa Test::Integration::LDAPNoTLS ${RELEASE:=CE} -- --tag quarantine
|
292
292
|
<<: *test
|
293
293
|
<<: *high-capacity
|
294
294
|
<<: *ce-qa
|
@@ -296,14 +296,14 @@ ce:ldap_no_tls-quarantine:
|
|
296
296
|
|
297
297
|
ee:ldap_no_tls:
|
298
298
|
script:
|
299
|
-
-
|
299
|
+
- exe/gitlab-qa Test::Integration::LDAPNoTLS ${RELEASE:=EE}
|
300
300
|
<<: *test
|
301
301
|
<<: *high-capacity
|
302
302
|
<<: *ee-qa
|
303
303
|
|
304
304
|
ee:ldap_no_tls-quarantine:
|
305
305
|
script:
|
306
|
-
-
|
306
|
+
- exe/gitlab-qa Test::Integration::LDAPNoTLS ${RELEASE:=EE} -- --tag quarantine
|
307
307
|
<<: *test
|
308
308
|
<<: *high-capacity
|
309
309
|
<<: *ee-qa
|
@@ -311,14 +311,14 @@ ee:ldap_no_tls-quarantine:
|
|
311
311
|
|
312
312
|
ce:ldap_tls:
|
313
313
|
script:
|
314
|
-
-
|
314
|
+
- exe/gitlab-qa Test::Integration::LDAPTLS ${RELEASE:=CE}
|
315
315
|
<<: *test
|
316
316
|
<<: *high-capacity
|
317
317
|
<<: *ce-qa
|
318
318
|
|
319
319
|
ce:ldap_tls-quarantine:
|
320
320
|
script:
|
321
|
-
-
|
321
|
+
- exe/gitlab-qa Test::Integration::LDAPTLS ${RELEASE:=CE} -- --tag quarantine
|
322
322
|
<<: *test
|
323
323
|
<<: *high-capacity
|
324
324
|
<<: *ce-qa
|
@@ -326,14 +326,14 @@ ce:ldap_tls-quarantine:
|
|
326
326
|
|
327
327
|
ee:ldap_tls:
|
328
328
|
script:
|
329
|
-
-
|
329
|
+
- exe/gitlab-qa Test::Integration::LDAPTLS ${RELEASE:=EE}
|
330
330
|
<<: *test
|
331
331
|
<<: *high-capacity
|
332
332
|
<<: *ee-qa
|
333
333
|
|
334
334
|
ee:ldap_tls-quarantine:
|
335
335
|
script:
|
336
|
-
-
|
336
|
+
- exe/gitlab-qa Test::Integration::LDAPTLS ${RELEASE:=EE} -- --tag quarantine
|
337
337
|
<<: *test
|
338
338
|
<<: *high-capacity
|
339
339
|
<<: *ee-qa
|
@@ -341,14 +341,14 @@ ee:ldap_tls-quarantine:
|
|
341
341
|
|
342
342
|
ce:instance_saml:
|
343
343
|
script:
|
344
|
-
-
|
344
|
+
- exe/gitlab-qa Test::Integration::InstanceSAML ${RELEASE:=CE}
|
345
345
|
<<: *test
|
346
346
|
<<: *high-capacity
|
347
347
|
<<: *ce-qa
|
348
348
|
|
349
349
|
ce:instance_saml-quarantine:
|
350
350
|
script:
|
351
|
-
-
|
351
|
+
- exe/gitlab-qa Test::Integration::InstanceSAML ${RELEASE:=CE} -- --tag quarantine
|
352
352
|
<<: *test
|
353
353
|
<<: *high-capacity
|
354
354
|
<<: *ce-qa
|
@@ -356,14 +356,14 @@ ce:instance_saml-quarantine:
|
|
356
356
|
|
357
357
|
ee:instance_saml:
|
358
358
|
script:
|
359
|
-
-
|
359
|
+
- exe/gitlab-qa Test::Integration::InstanceSAML ${RELEASE:=EE}
|
360
360
|
<<: *test
|
361
361
|
<<: *high-capacity
|
362
362
|
<<: *ee-qa
|
363
363
|
|
364
364
|
ee:instance_saml-quarantine:
|
365
365
|
script:
|
366
|
-
-
|
366
|
+
- exe/gitlab-qa Test::Integration::InstanceSAML ${RELEASE:=EE} -- --tag quarantine
|
367
367
|
<<: *test
|
368
368
|
<<: *high-capacity
|
369
369
|
<<: *ee-qa
|
@@ -371,14 +371,14 @@ ee:instance_saml-quarantine:
|
|
371
371
|
|
372
372
|
ee:group_saml:
|
373
373
|
script:
|
374
|
-
-
|
374
|
+
- exe/gitlab-qa Test::Integration::GroupSAML ${RELEASE:=EE}
|
375
375
|
<<: *test
|
376
376
|
<<: *high-capacity
|
377
377
|
<<: *ee-qa
|
378
378
|
|
379
379
|
ee:group_saml-quarantine:
|
380
380
|
script:
|
381
|
-
-
|
381
|
+
- exe/gitlab-qa Test::Integration::GroupSAML ${RELEASE:=EE} -- --tag quarantine
|
382
382
|
<<: *test
|
383
383
|
<<: *high-capacity
|
384
384
|
<<: *ee-qa
|
@@ -386,14 +386,14 @@ ee:group_saml-quarantine:
|
|
386
386
|
|
387
387
|
ce:kubernetes:
|
388
388
|
script:
|
389
|
-
-
|
389
|
+
- exe/gitlab-qa Test::Integration::Kubernetes ${RELEASE:=CE}
|
390
390
|
<<: *test
|
391
391
|
<<: *high-capacity
|
392
392
|
<<: *ce-qa
|
393
393
|
|
394
394
|
ce:kubernetes-quarantine:
|
395
395
|
script:
|
396
|
-
-
|
396
|
+
- exe/gitlab-qa Test::Integration::Kubernetes ${RELEASE:=CE} -- --tag quarantine
|
397
397
|
<<: *test
|
398
398
|
<<: *high-capacity
|
399
399
|
<<: *ce-qa
|
@@ -401,14 +401,14 @@ ce:kubernetes-quarantine:
|
|
401
401
|
|
402
402
|
ee:kubernetes:
|
403
403
|
script:
|
404
|
-
-
|
404
|
+
- exe/gitlab-qa Test::Integration::Kubernetes ${RELEASE:=EE}
|
405
405
|
<<: *test
|
406
406
|
<<: *high-capacity
|
407
407
|
<<: *ee-qa
|
408
408
|
|
409
409
|
ee:kubernetes-quarantine:
|
410
410
|
script:
|
411
|
-
-
|
411
|
+
- exe/gitlab-qa Test::Integration::Kubernetes ${RELEASE:=EE} -- --tag quarantine
|
412
412
|
<<: *test
|
413
413
|
<<: *high-capacity
|
414
414
|
<<: *ee-qa
|
@@ -416,14 +416,14 @@ ee:kubernetes-quarantine:
|
|
416
416
|
|
417
417
|
ce:object_storage:
|
418
418
|
script:
|
419
|
-
-
|
419
|
+
- exe/gitlab-qa Test::Integration::ObjectStorage ${RELEASE:=CE}
|
420
420
|
<<: *test
|
421
421
|
<<: *high-capacity
|
422
422
|
<<: *ce-qa
|
423
423
|
|
424
424
|
ce:object_storage-quarantine:
|
425
425
|
script:
|
426
|
-
-
|
426
|
+
- exe/gitlab-qa Test::Integration::ObjectStorage ${RELEASE:=CE} -- --tag quarantine
|
427
427
|
<<: *test
|
428
428
|
<<: *high-capacity
|
429
429
|
<<: *ce-qa
|
@@ -431,14 +431,14 @@ ce:object_storage-quarantine:
|
|
431
431
|
|
432
432
|
ee:object_storage:
|
433
433
|
script:
|
434
|
-
-
|
434
|
+
- exe/gitlab-qa Test::Integration::ObjectStorage ${RELEASE:=EE}
|
435
435
|
<<: *test
|
436
436
|
<<: *high-capacity
|
437
437
|
<<: *ee-qa
|
438
438
|
|
439
439
|
ee:object_storage-quarantine:
|
440
440
|
script:
|
441
|
-
-
|
441
|
+
- exe/gitlab-qa Test::Integration::ObjectStorage ${RELEASE:=EE} -- --tag quarantine
|
442
442
|
<<: *test
|
443
443
|
<<: *high-capacity
|
444
444
|
<<: *ee-qa
|
@@ -446,14 +446,14 @@ ee:object_storage-quarantine:
|
|
446
446
|
|
447
447
|
ce:oauth:
|
448
448
|
script:
|
449
|
-
-
|
449
|
+
- exe/gitlab-qa Test::Integration::OAuth ${RELEASE:=CE}
|
450
450
|
<<: *test
|
451
451
|
<<: *high-capacity
|
452
452
|
<<: *ce-qa
|
453
453
|
|
454
454
|
ce:oauth-quarantine:
|
455
455
|
script:
|
456
|
-
-
|
456
|
+
- exe/gitlab-qa Test::Integration::OAuth ${RELEASE:=CE} -- --tag quarantine
|
457
457
|
<<: *test
|
458
458
|
<<: *high-capacity
|
459
459
|
<<: *ce-qa
|
@@ -461,14 +461,14 @@ ce:oauth-quarantine:
|
|
461
461
|
|
462
462
|
ee:oauth:
|
463
463
|
script:
|
464
|
-
-
|
464
|
+
- exe/gitlab-qa Test::Integration::OAuth ${RELEASE:=EE}
|
465
465
|
<<: *test
|
466
466
|
<<: *high-capacity
|
467
467
|
<<: *ee-qa
|
468
468
|
|
469
469
|
ee:oauth-quarantine:
|
470
470
|
script:
|
471
|
-
-
|
471
|
+
- exe/gitlab-qa Test::Integration::OAuth ${RELEASE:=EE} -- --tag quarantine
|
472
472
|
<<: *test
|
473
473
|
<<: *high-capacity
|
474
474
|
<<: *ee-qa
|
data/exe/gitlab-qa
CHANGED
@@ -44,7 +44,15 @@ module Gitlab
|
|
44
44
|
'GITHUB_OAUTH_APP_ID' => :github_oauth_app_id,
|
45
45
|
'GITHUB_OAUTH_APP_SECRET' => :github_oauth_app_secret,
|
46
46
|
'GITHUB_USERNAME' => :github_username,
|
47
|
-
'GITHUB_PASSWORD' => :github_password
|
47
|
+
'GITHUB_PASSWORD' => :github_password,
|
48
|
+
'KNAPSACK_GENERATE_REPORT' => :knapsack_generate_report,
|
49
|
+
'KNAPSACK_REPORT_PATH' => :knapsack_report_path,
|
50
|
+
'KNAPSACK_TEST_FILE_PATTERN' => :knapsack_test_file_pattern,
|
51
|
+
'KNAPSACK_TEST_DIR' => :knapsack_test_dir,
|
52
|
+
'CI' => :ci,
|
53
|
+
'CI_NODE_INDEX' => :ci_node_index,
|
54
|
+
'CI_NODE_TOTAL' => :ci_node_total,
|
55
|
+
'GITLAB_CI' => :gitlab_ci
|
48
56
|
}.freeze
|
49
57
|
|
50
58
|
ENV_VARIABLES.each_value do |accessor|
|
data/lib/gitlab/qa/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gitlab-qa
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Grzegorz Bizon
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-05-
|
11
|
+
date: 2019-05-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: climate_control
|
@@ -131,7 +131,6 @@ files:
|
|
131
131
|
- bin/console
|
132
132
|
- bin/expect_exit_code_and_text
|
133
133
|
- bin/notify_upstream_commit
|
134
|
-
- bin/qa
|
135
134
|
- bin/setup
|
136
135
|
- bin/slack
|
137
136
|
- docs/README.md
|