pubnub 5.3.2 → 5.3.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/run-tests.yml +4 -2
- data/.pubnub.yml +177 -286
- data/.rubocop.yml +1 -1
- data/CHANGELOG.md +6 -0
- data/Gemfile.lock +110 -127
- data/VERSION +1 -1
- data/lib/pubnub/version.rb +1 -1
- data/pubnub.gemspec +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 15cb7d26bab18d7fe5f9aeec8721e63272b243dd6813132c972ab4af50da8acd
|
4
|
+
data.tar.gz: b1dd294bebc11347ddc48b0489a393549c9e158b1d189cabe6d1f1d823cc6e58
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cba51f7ae0a00ee33cca96c635a62894e819c1ceb80fef4052bd97ce18bf5659cd1a2cbcc6e806b9a97af26a510562538270ed2bf78c17c77986feb03c5d3bcb
|
7
|
+
data.tar.gz: 84c55cfc9fed8c89f14dfce823ceef627971fc494c572115c4f4ebc1bfcc0330120114c3ae1f27a87cb6e7ce7040c3da30619681b7209fd0767bc10c2fde231c
|
@@ -15,10 +15,12 @@ jobs:
|
|
15
15
|
tests:
|
16
16
|
name: Integration and Unit tests
|
17
17
|
runs-on: ubuntu-latest
|
18
|
+
env:
|
19
|
+
NO_COVERAGE: true
|
18
20
|
strategy:
|
19
21
|
fail-fast: true
|
20
22
|
matrix:
|
21
|
-
ruby: [
|
23
|
+
ruby: [ 3.0.6, 3.1.4, 3.2.3 ]
|
22
24
|
steps:
|
23
25
|
- name: Checkout repository
|
24
26
|
uses: actions/checkout@v3
|
@@ -89,7 +91,7 @@ jobs:
|
|
89
91
|
all-tests:
|
90
92
|
name: Tests
|
91
93
|
runs-on: ubuntu-latest
|
92
|
-
needs: [tests, acceptance-tests]
|
94
|
+
needs: [ tests, acceptance-tests ]
|
93
95
|
steps:
|
94
96
|
- name: Tests summary
|
95
97
|
run: echo -e "\033[38;2;95;215;0m\033[1mAll tests successfully passed"
|
data/.pubnub.yml
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
---
|
2
|
-
version: "5.3.
|
2
|
+
version: "5.3.3"
|
3
3
|
changelog:
|
4
|
+
- date: 2024-01-29
|
5
|
+
version: v5.3.3
|
6
|
+
changes:
|
7
|
+
- type: improvement
|
8
|
+
text: "Bump required version to the minimum officially supported Ruby version."
|
4
9
|
- date: 2023-11-23
|
5
10
|
version: v5.3.2
|
6
11
|
changes:
|
@@ -74,389 +79,276 @@ changelog:
|
|
74
79
|
changes:
|
75
80
|
- type: feature
|
76
81
|
text: "Grant_token allows generation of signed token with permissions for channels, channel groups and uuids."
|
77
|
-
-
|
78
|
-
|
79
|
-
-
|
80
|
-
text: "Add new `sdks` section to `.pubnub.yml` with information about available artifacts and distribution variants."
|
82
|
+
- changes:
|
83
|
+
- text: "Add new `sdks` section to `.pubnub.yml` with information about available artifacts and distribution variants."
|
81
84
|
type: improvement
|
82
85
|
date: 2021-06-09
|
83
86
|
version: v4.6.2
|
84
|
-
-
|
85
|
-
|
86
|
-
-
|
87
|
-
text: "Exclude `spec` and `fixtures` from built gem file."
|
87
|
+
- changes:
|
88
|
+
- text: "Exclude `spec` and `fixtures` from built gem file."
|
88
89
|
type: improvement
|
89
|
-
-
|
90
|
-
text: "Fix Ruby SDK repository location under `sdks` section in `.pubnub.yml`."
|
90
|
+
- text: "Fix Ruby SDK repository location under `sdks` section in `.pubnub.yml`."
|
91
91
|
type: improvement
|
92
|
-
-
|
93
|
-
text: "Add new section to `.pubnub.yml` file with information about SDK and destribution types."
|
92
|
+
- text: "Add new section to `.pubnub.yml` file with information about SDK and destribution types."
|
94
93
|
type: improvement
|
95
94
|
date: 2021-05-19
|
96
95
|
version: v4.6.1
|
97
|
-
-
|
98
|
-
|
99
|
-
-
|
100
|
-
text: "BREAKING CHANGE: Add randomized initialization vector usage by default for data encryption / decryption in publish / subscribe / history API calls."
|
96
|
+
- changes:
|
97
|
+
- text: "BREAKING CHANGE: Add randomized initialization vector usage by default for data encryption / decryption in publish / subscribe / history API calls."
|
101
98
|
type: feature
|
102
|
-
-
|
103
|
-
text: "Fix issue which caused Object request body encryption when `cipher_key` is set."
|
99
|
+
- text: "Fix issue which caused Object request body encryption when `cipher_key` is set."
|
104
100
|
type: bug
|
105
101
|
date: 2021-03-08
|
106
102
|
version: v4.6.0
|
107
|
-
-
|
108
|
-
|
109
|
-
-
|
110
|
-
text: "Add support for APNS2 device/channel management."
|
103
|
+
- changes:
|
104
|
+
- text: "Add support for APNS2 device/channel management."
|
111
105
|
type: feature
|
112
|
-
-
|
113
|
-
text: "Resolved issue with multiple timetokens in message counts endpoint"
|
106
|
+
- text: "Resolved issue with multiple timetokens in message counts endpoint"
|
114
107
|
type: bug
|
115
108
|
date: 2020-12-03
|
116
109
|
version: v4.5.0
|
117
|
-
-
|
118
|
-
|
119
|
-
-
|
120
|
-
text: "Add simplified Objects API support with UUID and Channel metadata / membership management."
|
110
|
+
- changes:
|
111
|
+
- text: "Add simplified Objects API support with UUID and Channel metadata / membership management."
|
121
112
|
type: feature
|
122
|
-
-
|
123
|
-
text: "Add uuid and parameter to Grant API along with new Objects permissions: `get`, `update` and `join`."
|
113
|
+
- text: "Add uuid and parameter to Grant API along with new Objects permissions: `get`, `update` and `join`."
|
124
114
|
type: feature
|
125
115
|
date: 2020-10-21
|
126
116
|
version: v4.4.0
|
127
|
-
-
|
128
|
-
|
129
|
-
-
|
130
|
-
text: "Add `delete` permission for `channel` to Grant."
|
117
|
+
- changes:
|
118
|
+
- text: "Add `delete` permission for `channel` to Grant."
|
131
119
|
type: feature
|
132
120
|
date: 2020-10-18
|
133
121
|
version: v4.3.0
|
134
|
-
-
|
135
|
-
|
136
|
-
-
|
137
|
-
text: "Don't suppress runtime errors."
|
122
|
+
- changes:
|
123
|
+
- text: "Don't suppress runtime errors."
|
138
124
|
type: bug
|
139
125
|
date: 2020-09-14
|
140
126
|
version: v4.2.7
|
141
|
-
-
|
142
|
-
|
143
|
-
-
|
144
|
-
text: "History can now respond with message meta information."
|
127
|
+
- changes:
|
128
|
+
- text: "History can now respond with message meta information."
|
145
129
|
type: feature
|
146
|
-
-
|
147
|
-
text: "Added official support for Ruby 2.7.X"
|
130
|
+
- text: "Added official support for Ruby 2.7.X"
|
148
131
|
type: feature
|
149
|
-
-
|
150
|
-
text: "History properly decrypts messages when using the \"include_token\" parameter."
|
132
|
+
- text: "History properly decrypts messages when using the \"include_token\" parameter."
|
151
133
|
type: bug
|
152
134
|
date: 2020-08-25
|
153
135
|
version: v4.2.6
|
154
|
-
-
|
155
|
-
|
156
|
-
-
|
157
|
-
text: "Fixed Message Counts channel timetokens by disabling alphabetic sorting of the channels list."
|
136
|
+
- changes:
|
137
|
+
- text: "Fixed Message Counts channel timetokens by disabling alphabetic sorting of the channels list."
|
158
138
|
type: bug
|
159
139
|
date: 2020-06-02
|
160
140
|
version: v4.2.5
|
161
|
-
-
|
162
|
-
|
163
|
-
-
|
164
|
-
text: "Replace event name with full endpoint path in PAM signatures, for compatibility with PAM v2 signatures."
|
141
|
+
- changes:
|
142
|
+
- text: "Replace event name with full endpoint path in PAM signatures, for compatibility with PAM v2 signatures."
|
165
143
|
type: bug
|
166
|
-
-
|
167
|
-
text: "Change paths for PAM endpoints from v1 to v2."
|
144
|
+
- text: "Change paths for PAM endpoints from v1 to v2."
|
168
145
|
type: bug
|
169
|
-
-
|
170
|
-
text: "Update PAM signature generator to correctly sort the query string parameters based on key instead of combined key and value."
|
146
|
+
- text: "Update PAM signature generator to correctly sort the query string parameters based on key instead of combined key and value."
|
171
147
|
type: bug
|
172
148
|
date: 2020-05-22
|
173
149
|
version: v4.2.4
|
174
|
-
-
|
175
|
-
|
176
|
-
-
|
177
|
-
text: "Resolved issue with multiple timetokens in message counts endpoint"
|
150
|
+
- changes:
|
151
|
+
- text: "Resolved issue with multiple timetokens in message counts endpoint"
|
178
152
|
type: bug
|
179
153
|
date: 2019-11-11
|
180
154
|
version: "4.2.2"
|
181
|
-
-
|
182
|
-
|
183
|
-
-
|
184
|
-
text: "Updated listener methods"
|
155
|
+
- changes:
|
156
|
+
- text: "Updated listener methods"
|
185
157
|
type: feature
|
186
158
|
date: 2019-10-25
|
187
159
|
version: "4.2.1"
|
188
|
-
-
|
189
|
-
|
190
|
-
-
|
191
|
-
text: "Added objects feature"
|
160
|
+
- changes:
|
161
|
+
- text: "Added objects feature"
|
192
162
|
type: feature
|
193
163
|
date: 2019-10-11
|
194
164
|
version: "4.2.0"
|
195
|
-
-
|
196
|
-
|
197
|
-
-
|
198
|
-
text: "Added signal feature"
|
165
|
+
- changes:
|
166
|
+
- text: "Added signal feature"
|
199
167
|
type: feature
|
200
168
|
date: 2019-08-21
|
201
169
|
version: "4.1.6"
|
202
|
-
-
|
203
|
-
|
204
|
-
-
|
205
|
-
text: "Updated dependencies"
|
170
|
+
- changes:
|
171
|
+
- text: "Updated dependencies"
|
206
172
|
type: improvement
|
207
173
|
date: 2019-07-29
|
208
174
|
version: "4.1.5"
|
209
|
-
-
|
210
|
-
|
211
|
-
-
|
212
|
-
text: "Added push API"
|
175
|
+
- changes:
|
176
|
+
- text: "Added push API"
|
213
177
|
type: feature
|
214
178
|
date: 2019-04-08
|
215
179
|
version: "4.1.1"
|
216
|
-
-
|
217
|
-
|
218
|
-
-
|
219
|
-
text: "Added 'message_count' API endpoint"
|
180
|
+
- changes:
|
181
|
+
- text: "Added 'message_count' API endpoint"
|
220
182
|
type: feature
|
221
183
|
date: 2019-02-28
|
222
184
|
version: "4.1.0"
|
223
|
-
-
|
224
|
-
|
225
|
-
-
|
226
|
-
text: "Switch from Celluloid to concurrent-ruby."
|
185
|
+
- changes:
|
186
|
+
- text: "Switch from Celluloid to concurrent-ruby."
|
227
187
|
type: bug
|
228
188
|
date: 2018-08-28
|
229
189
|
version: "4.0.28"
|
230
|
-
-
|
231
|
-
|
232
|
-
-
|
233
|
-
text: "Fixed telemetry issues."
|
190
|
+
- changes:
|
191
|
+
- text: "Fixed telemetry issues."
|
234
192
|
type: bug
|
235
193
|
date: 2017-11-17
|
236
194
|
version: "4.0.27"
|
237
|
-
-
|
238
|
-
|
239
|
-
-
|
240
|
-
text: "Secured telemetry call. Fixed crash when an app was exiting."
|
195
|
+
- changes:
|
196
|
+
- text: "Secured telemetry call. Fixed crash when an app was exiting."
|
241
197
|
type: bug
|
242
198
|
date: 2017-10-23
|
243
199
|
version: "4.0.26"
|
244
|
-
-
|
245
|
-
|
246
|
-
-
|
247
|
-
text: "Added telemetry"
|
200
|
+
- changes:
|
201
|
+
- text: "Added telemetry"
|
248
202
|
type: feature
|
249
203
|
date: 2017-09-12
|
250
204
|
version: "4.0.25"
|
251
|
-
-
|
252
|
-
|
253
|
-
-
|
254
|
-
text: "Added #delete_messages method"
|
205
|
+
- changes:
|
206
|
+
- text: "Added #delete_messages method"
|
255
207
|
type: feature
|
256
|
-
-
|
257
|
-
text: "Improved timeout error handling (thanks @f1sherman)"
|
208
|
+
- text: "Improved timeout error handling (thanks @f1sherman)"
|
258
209
|
type: improvement
|
259
210
|
date: 2017-08-29
|
260
211
|
version: "4.0.24"
|
261
|
-
-
|
262
|
-
|
263
|
-
-
|
264
|
-
text: "Fixed HereNow envelope generation"
|
212
|
+
- changes:
|
213
|
+
- text: "Fixed HereNow envelope generation"
|
265
214
|
type: bug
|
266
215
|
date: 2017-07-26
|
267
216
|
version: "4.0.23"
|
268
|
-
-
|
269
|
-
|
270
|
-
-
|
271
|
-
text: "Fixed signature generation and channel name escaping"
|
217
|
+
- changes:
|
218
|
+
- text: "Fixed signature generation and channel name escaping"
|
272
219
|
type: bug
|
273
220
|
date: 2017-05-31
|
274
221
|
version: "4.0.22"
|
275
|
-
-
|
276
|
-
|
277
|
-
-
|
278
|
-
text: "Fixed signature generation"
|
222
|
+
- changes:
|
223
|
+
- text: "Fixed signature generation"
|
279
224
|
type: bug
|
280
225
|
date: 2017-04-18
|
281
226
|
version: "4.0.21"
|
282
|
-
-
|
283
|
-
|
284
|
-
-
|
285
|
-
text: "origin can now be set in initialized client"
|
227
|
+
- changes:
|
228
|
+
- text: "origin can now be set in initialized client"
|
286
229
|
type: improvement
|
287
|
-
-
|
288
|
-
text: "presence interval support"
|
230
|
+
- text: "presence interval support"
|
289
231
|
type: improvement
|
290
|
-
-
|
291
|
-
text: "allows using multiple cipher keys"
|
232
|
+
- text: "allows using multiple cipher keys"
|
292
233
|
type: improvement
|
293
234
|
date: 2017-04-11
|
294
235
|
version: "4.0.20"
|
295
|
-
-
|
296
|
-
|
297
|
-
-
|
298
|
-
text: "Fixed sync subscribe not terminating actors"
|
236
|
+
- changes:
|
237
|
+
- text: "Fixed sync subscribe not terminating actors"
|
299
238
|
type: bug
|
300
239
|
date: 2017-03-02
|
301
240
|
version: v4.0.18
|
302
|
-
-
|
303
|
-
|
304
|
-
-
|
305
|
-
text: "Added a bit more debug logging"
|
241
|
+
- changes:
|
242
|
+
- text: "Added a bit more debug logging"
|
306
243
|
type: improvement
|
307
|
-
-
|
308
|
-
text: "Updated default origin"
|
244
|
+
- text: "Updated default origin"
|
309
245
|
type: improvement
|
310
246
|
date: 2016-12-21
|
311
247
|
version: v4.0.17
|
312
|
-
-
|
313
|
-
|
314
|
-
-
|
315
|
-
text: "Fixed missing channel group parameter in leave event"
|
248
|
+
- changes:
|
249
|
+
- text: "Fixed missing channel group parameter in leave event"
|
316
250
|
type: bug
|
317
251
|
date: 2016-11-23
|
318
252
|
version: v4.0.16
|
319
|
-
-
|
320
|
-
|
321
|
-
-
|
322
|
-
text: "Fixed PAM signature when some special characters are present"
|
253
|
+
- changes:
|
254
|
+
- text: "Fixed PAM signature when some special characters are present"
|
323
255
|
type: bug
|
324
256
|
date: 2016-11-21
|
325
257
|
version: v4.0.15
|
326
|
-
-
|
327
|
-
|
328
|
-
-
|
329
|
-
text: "Added ttl parameter for publish"
|
258
|
+
- changes:
|
259
|
+
- text: "Added ttl parameter for publish"
|
330
260
|
type: improvement
|
331
261
|
date: 2016-11-04
|
332
262
|
version: v4.0.14
|
333
|
-
-
|
334
|
-
|
335
|
-
-
|
336
|
-
text: "Changed init message log level to debug"
|
263
|
+
- changes:
|
264
|
+
- text: "Changed init message log level to debug"
|
337
265
|
type: improvement
|
338
266
|
date: 2016-11-04
|
339
267
|
version: v4.0.13
|
340
|
-
-
|
341
|
-
|
342
|
-
-
|
343
|
-
text: "Added alert on catchup failure (REQUEST_MESSAGE_COUNT_EXCEEDED)"
|
268
|
+
- changes:
|
269
|
+
- text: "Added alert on catchup failure (REQUEST_MESSAGE_COUNT_EXCEEDED)"
|
344
270
|
type: improvement
|
345
271
|
date: 2016-10-31
|
346
272
|
version: v4.0.12
|
347
|
-
-
|
348
|
-
|
349
|
-
-
|
350
|
-
text: "Added super admin mode (Enabled when secret key is set on Pubnub::Client init)"
|
273
|
+
- changes:
|
274
|
+
- text: "Added super admin mode (Enabled when secret key is set on Pubnub::Client init)"
|
351
275
|
type: improvement
|
352
276
|
date: 2016-10-31
|
353
277
|
version: v4.0.11
|
354
|
-
-
|
355
|
-
|
356
|
-
-
|
357
|
-
text: "Better single events timeout handling"
|
278
|
+
- changes:
|
279
|
+
- text: "Better single events timeout handling"
|
358
280
|
type: improvement
|
359
|
-
-
|
360
|
-
text: "DRYed envelope formatting a bit"
|
281
|
+
- text: "DRYed envelope formatting a bit"
|
361
282
|
type: improvement
|
362
283
|
date: 2016-10-31
|
363
284
|
version: v4.0.10
|
364
|
-
-
|
365
|
-
|
366
|
-
-
|
367
|
-
text: "Removed json dependency"
|
285
|
+
- changes:
|
286
|
+
- text: "Removed json dependency"
|
368
287
|
type: improvement
|
369
|
-
-
|
370
|
-
text: "Updated dependecies"
|
288
|
+
- text: "Updated dependecies"
|
371
289
|
type: improvement
|
372
290
|
date: 2016-10-31
|
373
291
|
version: v4.0.9
|
374
|
-
-
|
375
|
-
|
376
|
-
-
|
377
|
-
text: "Updated dry-validation."
|
292
|
+
- changes:
|
293
|
+
- text: "Updated dry-validation."
|
378
294
|
type: improvement
|
379
|
-
-
|
380
|
-
text: "Dropped support for ruby 2.0."
|
295
|
+
- text: "Dropped support for ruby 2.0."
|
381
296
|
type: improvement
|
382
297
|
date: 2016-10-31
|
383
298
|
version: v4.0.8
|
384
|
-
-
|
385
|
-
|
386
|
-
-
|
387
|
-
text: "Added message decrypting in history."
|
299
|
+
- changes:
|
300
|
+
- text: "Added message decrypting in history."
|
388
301
|
type: improvement
|
389
302
|
date: 2016-08-23
|
390
303
|
version: v4.0.7
|
391
|
-
-
|
392
|
-
|
393
|
-
-
|
394
|
-
text: "channel and channels are the same argument."
|
304
|
+
- changes:
|
305
|
+
- text: "channel and channels are the same argument."
|
395
306
|
type: improvement
|
396
|
-
-
|
397
|
-
text: "channel_group and channel_groups are the same argument."
|
307
|
+
- text: "channel_group and channel_groups are the same argument."
|
398
308
|
type: improvement
|
399
|
-
-
|
400
|
-
text: "added `with_presence` flag for subscribe, default false."
|
309
|
+
- text: "added `with_presence` flag for subscribe, default false."
|
401
310
|
type: improvement
|
402
311
|
date: 2016-08-17
|
403
312
|
version: v4.0.6
|
404
|
-
-
|
405
|
-
|
406
|
-
-
|
407
|
-
text: "Required CGI."
|
313
|
+
- changes:
|
314
|
+
- text: "Required CGI."
|
408
315
|
type: improvement
|
409
316
|
date: 2016-08-17
|
410
317
|
version: v4.0.5
|
411
|
-
-
|
412
|
-
|
413
|
-
-
|
414
|
-
text: "Added #subscribe_filter for client"
|
318
|
+
- changes:
|
319
|
+
- text: "Added #subscribe_filter for client"
|
415
320
|
type: feature
|
416
321
|
date: 2016-08-17
|
417
322
|
version: v4.0.2
|
418
|
-
-
|
419
|
-
|
420
|
-
-
|
421
|
-
text: "Updated dry-validation and EnvelopeSchema."
|
323
|
+
- changes:
|
324
|
+
- text: "Updated dry-validation and EnvelopeSchema."
|
422
325
|
type: improvement
|
423
326
|
date: 2016-08-17
|
424
327
|
version: v4.0.1
|
425
|
-
-
|
426
|
-
|
427
|
-
-
|
428
|
-
text: "Removed auth_key and uuid setters (#set_auth_key,"
|
328
|
+
- changes:
|
329
|
+
- text: "Removed auth_key and uuid setters (#set_auth_key,"
|
429
330
|
type: feature
|
430
|
-
-
|
431
|
-
text: Added
|
331
|
+
- text: Added
|
432
332
|
type: improvement
|
433
333
|
date: 2016-08-17
|
434
334
|
version: v4.0.0
|
435
|
-
-
|
436
|
-
|
437
|
-
-
|
438
|
-
text: "Restored auth_key and uuid setters. Important notice: they will be removed"
|
335
|
+
- changes:
|
336
|
+
- text: "Restored auth_key and uuid setters. Important notice: they will be removed"
|
439
337
|
type: improvement
|
440
338
|
date: 2016-08-17
|
441
339
|
version: v3.8.3
|
442
|
-
-
|
443
|
-
|
444
|
-
-
|
445
|
-
text: "Added :include_token parameter to history call."
|
340
|
+
- changes:
|
341
|
+
- text: "Added :include_token parameter to history call."
|
446
342
|
type: feature
|
447
343
|
date: 2016-08-17
|
448
344
|
version: v3.8.2
|
449
|
-
-
|
450
|
-
|
451
|
-
-
|
452
|
-
text: "Updated celluloid dependency."
|
345
|
+
- changes:
|
346
|
+
- text: "Updated celluloid dependency."
|
453
347
|
type: improvement
|
454
348
|
date: 2016-08-17
|
455
349
|
version: v3.8.1
|
456
|
-
-
|
457
|
-
|
458
|
-
-
|
459
|
-
text: "Release of celluloid version of pubnub gem. It's complete rewrite but public API doesn't change."
|
350
|
+
- changes:
|
351
|
+
- text: "Release of celluloid version of pubnub gem. It's complete rewrite but public API doesn't change."
|
460
352
|
type: improvement
|
461
353
|
date: 2017-08-17
|
462
354
|
version: v3.8.0
|
@@ -548,11 +440,10 @@ name: ruby
|
|
548
440
|
schema: 1
|
549
441
|
scm: github.com/pubnub/ruby
|
550
442
|
supported-platforms:
|
551
|
-
-
|
552
|
-
|
553
|
-
- "ruby
|
554
|
-
- "ruby
|
555
|
-
- "ruby 2.4"
|
443
|
+
- editors:
|
444
|
+
- "ruby 3.2"
|
445
|
+
- "ruby 3.1"
|
446
|
+
- "ruby 3.0"
|
556
447
|
platforms:
|
557
448
|
- "FreeBSD 8-STABLE or later, amd64, 386"
|
558
449
|
- "Linux 2.6 or later, amd64, 386"
|
@@ -580,7 +471,7 @@ sdks:
|
|
580
471
|
requires:
|
581
472
|
- name: addressable
|
582
473
|
min-version: 2.0.0
|
583
|
-
max-version: 2.
|
474
|
+
max-version: 2.8.6
|
584
475
|
location: https://rubygems.org/gems/addressable
|
585
476
|
license: Apache License 2.0
|
586
477
|
license-url: https://github.com/sporkmonger/addressable/blob/main/LICENSE.txt
|
@@ -588,7 +479,7 @@ sdks:
|
|
588
479
|
notes: Will be installed along with SDK
|
589
480
|
- name: concurrent-ruby
|
590
481
|
min-version: 1.1.5
|
591
|
-
max-version: 1.1.
|
482
|
+
max-version: 1.1.10
|
592
483
|
location: https://rubygems.org/gems/concurrent-ruby
|
593
484
|
license: MIT License
|
594
485
|
license-url: https://github.com/ruby-concurrency/concurrent-ruby/blob/master/LICENSE.txt
|
@@ -604,7 +495,7 @@ sdks:
|
|
604
495
|
notes: Will be installed along with SDK
|
605
496
|
- name: dry-validation
|
606
497
|
min-version: 1.0.0
|
607
|
-
max-version: 1.
|
498
|
+
max-version: 1.10.0
|
608
499
|
location: https://rubygems.org/gems/dry-validation
|
609
500
|
license: MIT License
|
610
501
|
license-url: https://github.com/dry-rb/dry-validation/blob/master/LICENSE
|
@@ -620,7 +511,7 @@ sdks:
|
|
620
511
|
notes: Will be installed along with SDK
|
621
512
|
- name: json
|
622
513
|
min-version: 2.2.0
|
623
|
-
max-version: 2.
|
514
|
+
max-version: 2.7.1
|
624
515
|
location: https://rubygems.org/gems/json
|
625
516
|
license: Ruby License
|
626
517
|
license-url: https://github.com/flori/json/blob/master/LICENSE
|
@@ -628,7 +519,7 @@ sdks:
|
|
628
519
|
notes: Will be installed along with SDK
|
629
520
|
- name: timers
|
630
521
|
min-version: 4.3.0
|
631
|
-
max-version: 4.3.
|
522
|
+
max-version: 4.3.5
|
632
523
|
location: https://rubygems.org/gems/timers
|
633
524
|
license: MIT License
|
634
525
|
license-url: https://github.com/socketry/timers#license
|
@@ -638,10 +529,10 @@ sdks:
|
|
638
529
|
supported-operating-systems:
|
639
530
|
macOS:
|
640
531
|
runtime-version:
|
641
|
-
- Ruby
|
642
|
-
- Ruby
|
643
|
-
- Ruby 2.
|
644
|
-
- Ruby
|
532
|
+
- Ruby 3.0.x
|
533
|
+
- Ruby 3.1.x
|
534
|
+
- Ruby 3.2.x
|
535
|
+
- Ruby 3.3.x
|
645
536
|
minimum-os-version:
|
646
537
|
- OS X 10.10
|
647
538
|
maximum-os-version:
|
@@ -651,10 +542,10 @@ sdks:
|
|
651
542
|
- x86-64
|
652
543
|
Windows:
|
653
544
|
runtime-version:
|
654
|
-
- Ruby
|
655
|
-
- Ruby
|
656
|
-
- Ruby 2.
|
657
|
-
- Ruby
|
545
|
+
- Ruby 3.0.x
|
546
|
+
- Ruby 3.1.x
|
547
|
+
- Ruby 3.2.x
|
548
|
+
- Ruby 3.3.x
|
658
549
|
minimum-os-version:
|
659
550
|
- Windows 7 Professional
|
660
551
|
- Windows 7 Enterprise
|
@@ -667,10 +558,10 @@ sdks:
|
|
667
558
|
- x86-64
|
668
559
|
Linux:
|
669
560
|
runtime-version:
|
670
|
-
- Ruby
|
671
|
-
- Ruby
|
672
|
-
- Ruby 2.
|
673
|
-
- Ruby
|
561
|
+
- Ruby 3.0.x
|
562
|
+
- Ruby 3.1.x
|
563
|
+
- Ruby 3.2.x
|
564
|
+
- Ruby 3.3.x
|
674
565
|
minimum-os-version:
|
675
566
|
- Ubuntu 16.04 LTS
|
676
567
|
maximum-os-version:
|
@@ -680,12 +571,12 @@ sdks:
|
|
680
571
|
- x86-64
|
681
572
|
- distribution-type: package
|
682
573
|
distribution-repository: RubyGems
|
683
|
-
package-name: pubnub-5.3.
|
574
|
+
package-name: pubnub-5.3.3.gem
|
684
575
|
location: https://rubygems.org/gems/pubnub
|
685
576
|
requires:
|
686
577
|
- name: addressable
|
687
578
|
min-version: 2.0.0
|
688
|
-
max-version: 2.
|
579
|
+
max-version: 2.8.6
|
689
580
|
location: https://rubygems.org/gems/addressable
|
690
581
|
license: Apache License 2.0
|
691
582
|
license-url: https://github.com/sporkmonger/addressable/blob/main/LICENSE.txt
|
@@ -693,7 +584,7 @@ sdks:
|
|
693
584
|
notes: Will be installed along with SDK
|
694
585
|
- name: concurrent-ruby
|
695
586
|
min-version: 1.1.5
|
696
|
-
max-version: 1.1.
|
587
|
+
max-version: 1.1.10
|
697
588
|
location: https://rubygems.org/gems/concurrent-ruby
|
698
589
|
license: MIT License
|
699
590
|
license-url: https://github.com/ruby-concurrency/concurrent-ruby/blob/master/LICENSE.txt
|
@@ -709,7 +600,7 @@ sdks:
|
|
709
600
|
notes: Will be installed along with SDK
|
710
601
|
- name: dry-validation
|
711
602
|
min-version: 1.0.0
|
712
|
-
max-version: 1.
|
603
|
+
max-version: 1.10.0
|
713
604
|
location: https://rubygems.org/gems/dry-validation
|
714
605
|
license: MIT License
|
715
606
|
license-url: https://github.com/dry-rb/dry-validation/blob/master/LICENSE
|
@@ -725,7 +616,7 @@ sdks:
|
|
725
616
|
notes: Will be installed along with SDK
|
726
617
|
- name: json
|
727
618
|
min-version: 2.2.0
|
728
|
-
max-version: 2.
|
619
|
+
max-version: 2.7.1
|
729
620
|
location: https://rubygems.org/gems/json
|
730
621
|
license: Ruby License
|
731
622
|
license-url: https://github.com/flori/json/blob/master/LICENSE
|
@@ -733,7 +624,7 @@ sdks:
|
|
733
624
|
notes: Will be installed along with SDK
|
734
625
|
- name: timers
|
735
626
|
min-version: 4.3.0
|
736
|
-
max-version: 4.3.
|
627
|
+
max-version: 4.3.5
|
737
628
|
location: https://rubygems.org/gems/timers
|
738
629
|
license: MIT License
|
739
630
|
license-url: https://github.com/socketry/timers#license
|
@@ -743,10 +634,10 @@ sdks:
|
|
743
634
|
supported-operating-systems:
|
744
635
|
macOS:
|
745
636
|
runtime-version:
|
746
|
-
- Ruby
|
747
|
-
- Ruby
|
748
|
-
- Ruby 2.
|
749
|
-
- Ruby
|
637
|
+
- Ruby 3.0.x
|
638
|
+
- Ruby 3.1.x
|
639
|
+
- Ruby 3.2.x
|
640
|
+
- Ruby 3.3.x
|
750
641
|
minimum-os-version:
|
751
642
|
- OS X 10.10
|
752
643
|
maximum-os-version:
|
@@ -756,10 +647,10 @@ sdks:
|
|
756
647
|
- x86-64
|
757
648
|
Windows:
|
758
649
|
runtime-version:
|
759
|
-
- Ruby
|
760
|
-
- Ruby
|
761
|
-
- Ruby 2.
|
762
|
-
- Ruby
|
650
|
+
- Ruby 3.0.x
|
651
|
+
- Ruby 3.1.x
|
652
|
+
- Ruby 3.2.x
|
653
|
+
- Ruby 3.3.x
|
763
654
|
minimum-os-version:
|
764
655
|
- Windows 7 Professional
|
765
656
|
- Windows 7 Enterprise
|
@@ -772,10 +663,10 @@ sdks:
|
|
772
663
|
- x86-64
|
773
664
|
Linux:
|
774
665
|
runtime-version:
|
775
|
-
- Ruby
|
776
|
-
- Ruby
|
777
|
-
- Ruby 2.
|
778
|
-
- Ruby
|
666
|
+
- Ruby 3.0.x
|
667
|
+
- Ruby 3.1.x
|
668
|
+
- Ruby 3.2.x
|
669
|
+
- Ruby 3.3.x
|
779
670
|
minimum-os-version:
|
780
671
|
- Ubuntu 16.04 LTS
|
781
672
|
maximum-os-version:
|
@@ -785,19 +676,19 @@ sdks:
|
|
785
676
|
- x86-64
|
786
677
|
- distribution-type: library
|
787
678
|
distribution-repository: GitHub release
|
788
|
-
package-name: pubnub-5.3.
|
789
|
-
location: https://github.com/pubnub/ruby/releases/download/v5.3.
|
679
|
+
package-name: pubnub-5.3.3.gem
|
680
|
+
location: https://github.com/pubnub/ruby/releases/download/v5.3.3/pubnub-5.3.3.gem
|
790
681
|
requires:
|
791
682
|
- name: addressable
|
792
683
|
min-version: 2.0.0
|
793
|
-
max-version: 2.
|
684
|
+
max-version: 2.8.6
|
794
685
|
location: https://rubygems.org/gems/addressable
|
795
686
|
license: Apache License 2.0
|
796
687
|
license-url: https://github.com/sporkmonger/addressable/blob/main/LICENSE.txt
|
797
688
|
is-required: Required
|
798
689
|
- name: concurrent-ruby
|
799
690
|
min-version: 1.1.5
|
800
|
-
max-version: 1.1.
|
691
|
+
max-version: 1.1.10
|
801
692
|
location: https://rubygems.org/gems/concurrent-ruby
|
802
693
|
license: MIT License
|
803
694
|
license-url: https://github.com/ruby-concurrency/concurrent-ruby/blob/master/LICENSE.txt
|
@@ -811,7 +702,7 @@ sdks:
|
|
811
702
|
is-required: Required
|
812
703
|
- name: dry-validation
|
813
704
|
min-version: 1.0.0
|
814
|
-
max-version: 1.
|
705
|
+
max-version: 1.10.0
|
815
706
|
location: https://rubygems.org/gems/dry-validation
|
816
707
|
license: MIT License
|
817
708
|
license-url: https://github.com/dry-rb/dry-validation/blob/master/LICENSE
|
@@ -825,14 +716,14 @@ sdks:
|
|
825
716
|
is-required: Required
|
826
717
|
- name: json
|
827
718
|
min-version: 2.2.0
|
828
|
-
max-version: 2.
|
719
|
+
max-version: 2.7.1
|
829
720
|
location: https://rubygems.org/gems/json
|
830
721
|
license: Ruby License
|
831
722
|
license-url: https://github.com/flori/json/blob/master/LICENSE
|
832
723
|
is-required: Required
|
833
724
|
- name: timers
|
834
725
|
min-version: 4.3.0
|
835
|
-
max-version: 4.3.
|
726
|
+
max-version: 4.3.5
|
836
727
|
location: https://rubygems.org/gems/timers
|
837
728
|
license: MIT License
|
838
729
|
license-url: https://github.com/socketry/timers#license
|
@@ -841,10 +732,10 @@ sdks:
|
|
841
732
|
supported-operating-systems:
|
842
733
|
macOS:
|
843
734
|
runtime-version:
|
844
|
-
- Ruby
|
845
|
-
- Ruby
|
846
|
-
- Ruby 2.
|
847
|
-
- Ruby
|
735
|
+
- Ruby 3.0.x
|
736
|
+
- Ruby 3.1.x
|
737
|
+
- Ruby 3.2.x
|
738
|
+
- Ruby 3.3.x
|
848
739
|
minimum-os-version:
|
849
740
|
- OS X 10.10
|
850
741
|
maximum-os-version:
|
@@ -854,10 +745,10 @@ sdks:
|
|
854
745
|
- x86-64
|
855
746
|
Windows:
|
856
747
|
runtime-version:
|
857
|
-
- Ruby
|
858
|
-
- Ruby
|
859
|
-
- Ruby 2.
|
860
|
-
- Ruby
|
748
|
+
- Ruby 3.0.x
|
749
|
+
- Ruby 3.1.x
|
750
|
+
- Ruby 3.2.x
|
751
|
+
- Ruby 3.3.x
|
861
752
|
minimum-os-version:
|
862
753
|
- Windows 7 Professional
|
863
754
|
- Windows 7 Enterprise
|
@@ -870,10 +761,10 @@ sdks:
|
|
870
761
|
- x86-64
|
871
762
|
Linux:
|
872
763
|
runtime-version:
|
873
|
-
- Ruby
|
874
|
-
- Ruby
|
875
|
-
- Ruby 2.
|
876
|
-
- Ruby
|
764
|
+
- Ruby 3.0.x
|
765
|
+
- Ruby 3.1.x
|
766
|
+
- Ruby 3.2.x
|
767
|
+
- Ruby 3.3.x
|
877
768
|
minimum-os-version:
|
878
769
|
- Ubuntu 16.04 LTS
|
879
770
|
maximum-os-version:
|
data/.rubocop.yml
CHANGED
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
pubnub (5.3.
|
4
|
+
pubnub (5.3.3)
|
5
5
|
addressable (>= 2.0.0)
|
6
6
|
concurrent-ruby (~> 1.1.5)
|
7
7
|
concurrent-ruby-edge (~> 0.5.0)
|
@@ -13,174 +13,157 @@ PATH
|
|
13
13
|
GEM
|
14
14
|
remote: https://rubygems.org/
|
15
15
|
specs:
|
16
|
-
addressable (2.
|
17
|
-
public_suffix (>= 2.0.2, <
|
18
|
-
ast (2.4.
|
19
|
-
awesome_print (1.
|
20
|
-
|
16
|
+
addressable (2.8.6)
|
17
|
+
public_suffix (>= 2.0.2, < 6.0)
|
18
|
+
ast (2.4.2)
|
19
|
+
awesome_print (1.9.2)
|
20
|
+
bigdecimal (3.1.6)
|
21
|
+
binding_of_caller (1.0.0)
|
21
22
|
debug_inspector (>= 0.0.1)
|
22
23
|
builder (3.2.4)
|
23
24
|
codacy-coverage (2.2.1)
|
24
25
|
simplecov
|
25
26
|
coderay (1.1.3)
|
26
|
-
concurrent-ruby (1.1.
|
27
|
+
concurrent-ruby (1.1.10)
|
27
28
|
concurrent-ruby-edge (0.5.0)
|
28
29
|
concurrent-ruby (~> 1.1.5)
|
29
|
-
crack (0.4.
|
30
|
-
|
31
|
-
cucumber (
|
30
|
+
crack (0.4.5)
|
31
|
+
rexml
|
32
|
+
cucumber (9.1.2)
|
32
33
|
builder (~> 3.2, >= 3.2.4)
|
33
|
-
cucumber-
|
34
|
-
cucumber-
|
35
|
-
cucumber-cucumber-expressions (~>
|
36
|
-
cucumber-gherkin (
|
37
|
-
cucumber-html-formatter (
|
38
|
-
cucumber-messages (
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
cucumber-core (
|
45
|
-
cucumber-gherkin (
|
46
|
-
cucumber-messages (
|
47
|
-
cucumber-tag-expressions (~>
|
48
|
-
cucumber-
|
49
|
-
|
50
|
-
|
51
|
-
cucumber-
|
52
|
-
|
53
|
-
|
54
|
-
cucumber-
|
55
|
-
|
56
|
-
|
57
|
-
cucumber-tag-expressions (3.0.1)
|
58
|
-
cucumber-wire (6.1.1)
|
59
|
-
cucumber-core (~> 10.0, >= 10.0.1)
|
60
|
-
cucumber-cucumber-expressions (~> 12.1, >= 12.1.2)
|
61
|
-
cucumber-messages (~> 17.0, >= 17.0.1)
|
62
|
-
debug_inspector (0.0.3)
|
63
|
-
diff-lcs (1.4.4)
|
34
|
+
cucumber-ci-environment (~> 9.2, >= 9.2.0)
|
35
|
+
cucumber-core (~> 12.0)
|
36
|
+
cucumber-cucumber-expressions (~> 17.0)
|
37
|
+
cucumber-gherkin (> 24, < 27)
|
38
|
+
cucumber-html-formatter (> 20.3, < 22)
|
39
|
+
cucumber-messages (> 19, < 25)
|
40
|
+
diff-lcs (~> 1.5)
|
41
|
+
mini_mime (~> 1.1, >= 1.1.5)
|
42
|
+
multi_test (~> 1.1, >= 1.1.0)
|
43
|
+
sys-uname (~> 1.2, >= 1.2.3)
|
44
|
+
cucumber-ci-environment (9.2.0)
|
45
|
+
cucumber-core (12.0.0)
|
46
|
+
cucumber-gherkin (>= 25, < 27)
|
47
|
+
cucumber-messages (>= 20, < 23)
|
48
|
+
cucumber-tag-expressions (~> 5.0, >= 5.0.4)
|
49
|
+
cucumber-cucumber-expressions (17.0.1)
|
50
|
+
cucumber-gherkin (26.2.0)
|
51
|
+
cucumber-messages (>= 19.1.4, < 22.1)
|
52
|
+
cucumber-html-formatter (21.2.0)
|
53
|
+
cucumber-messages (> 19, < 25)
|
54
|
+
cucumber-messages (22.0.0)
|
55
|
+
cucumber-tag-expressions (5.0.6)
|
56
|
+
debug_inspector (1.2.0)
|
57
|
+
diff-lcs (1.5.0)
|
64
58
|
docile (1.4.0)
|
65
|
-
dry-configurable (
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
dry-container (0.7.2)
|
70
|
-
concurrent-ruby (~> 1.0)
|
71
|
-
dry-configurable (~> 0.1, >= 0.1.3)
|
72
|
-
dry-core (0.4.9)
|
59
|
+
dry-configurable (1.1.0)
|
60
|
+
dry-core (~> 1.0, < 2)
|
61
|
+
zeitwerk (~> 2.6)
|
62
|
+
dry-core (1.0.1)
|
73
63
|
concurrent-ruby (~> 1.0)
|
74
|
-
|
75
|
-
dry-inflector (0.
|
76
|
-
dry-initializer (3.
|
77
|
-
dry-logic (1.0
|
64
|
+
zeitwerk (~> 2.6)
|
65
|
+
dry-inflector (1.0.0)
|
66
|
+
dry-initializer (3.1.1)
|
67
|
+
dry-logic (1.5.0)
|
78
68
|
concurrent-ruby (~> 1.0)
|
79
|
-
dry-core (~> 0
|
80
|
-
|
81
|
-
dry-schema (1.
|
69
|
+
dry-core (~> 1.0, < 2)
|
70
|
+
zeitwerk (~> 2.6)
|
71
|
+
dry-schema (1.13.3)
|
82
72
|
concurrent-ruby (~> 1.0)
|
83
|
-
dry-configurable (~> 0
|
84
|
-
dry-core (~> 0
|
85
|
-
dry-equalizer (~> 0.2)
|
73
|
+
dry-configurable (~> 1.0, >= 1.0.1)
|
74
|
+
dry-core (~> 1.0, < 2)
|
86
75
|
dry-initializer (~> 3.0)
|
87
|
-
dry-logic (
|
88
|
-
dry-types (
|
89
|
-
|
76
|
+
dry-logic (>= 1.4, < 2)
|
77
|
+
dry-types (>= 1.7, < 2)
|
78
|
+
zeitwerk (~> 2.6)
|
79
|
+
dry-types (1.7.2)
|
80
|
+
bigdecimal (~> 3.0)
|
90
81
|
concurrent-ruby (~> 1.0)
|
91
|
-
dry-
|
92
|
-
dry-
|
93
|
-
dry-
|
94
|
-
|
95
|
-
|
96
|
-
dry-validation (1.5.3)
|
82
|
+
dry-core (~> 1.0)
|
83
|
+
dry-inflector (~> 1.0)
|
84
|
+
dry-logic (~> 1.4)
|
85
|
+
zeitwerk (~> 2.6)
|
86
|
+
dry-validation (1.10.0)
|
97
87
|
concurrent-ruby (~> 1.0)
|
98
|
-
dry-
|
99
|
-
dry-core (~> 0.4)
|
100
|
-
dry-equalizer (~> 0.2)
|
88
|
+
dry-core (~> 1.0, < 2)
|
101
89
|
dry-initializer (~> 3.0)
|
102
|
-
dry-schema (
|
103
|
-
|
104
|
-
ffi (1.16.
|
105
|
-
hashdiff (1.0
|
90
|
+
dry-schema (>= 1.12, < 2)
|
91
|
+
zeitwerk (~> 2.6)
|
92
|
+
ffi (1.16.3)
|
93
|
+
hashdiff (1.1.0)
|
106
94
|
httpclient (2.8.3)
|
107
95
|
interception (0.5)
|
108
|
-
json (2.
|
109
|
-
|
96
|
+
json (2.7.1)
|
97
|
+
language_server-protocol (3.17.0.3)
|
110
98
|
method_source (1.0.0)
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
parallel (1.19.2)
|
116
|
-
parser (2.7.1.4)
|
99
|
+
mini_mime (1.1.5)
|
100
|
+
multi_test (1.1.0)
|
101
|
+
parallel (1.24.0)
|
102
|
+
parser (3.3.0.5)
|
117
103
|
ast (~> 2.4.1)
|
104
|
+
racc
|
118
105
|
pry (0.14.2)
|
119
106
|
coderay (~> 1.1)
|
120
107
|
method_source (~> 1.0)
|
121
|
-
pry (
|
122
|
-
coderay (~> 1.1)
|
123
|
-
method_source (~> 1.0)
|
124
|
-
spoon (~> 0.0)
|
125
|
-
pry-rescue (1.5.2)
|
108
|
+
pry-rescue (1.6.0)
|
126
109
|
interception (>= 0.5)
|
127
110
|
pry (>= 0.12.0)
|
128
|
-
pry-stack_explorer (0.
|
129
|
-
binding_of_caller (~> 0
|
111
|
+
pry-stack_explorer (0.6.1)
|
112
|
+
binding_of_caller (~> 1.0)
|
130
113
|
pry (~> 0.13)
|
131
|
-
public_suffix (
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
rspec-
|
139
|
-
rspec-
|
140
|
-
|
141
|
-
|
142
|
-
|
114
|
+
public_suffix (5.0.4)
|
115
|
+
racc (1.7.3)
|
116
|
+
rainbow (3.1.1)
|
117
|
+
regexp_parser (2.9.0)
|
118
|
+
rexml (3.2.6)
|
119
|
+
rr (3.1.0)
|
120
|
+
rspec (3.12.0)
|
121
|
+
rspec-core (~> 3.12.0)
|
122
|
+
rspec-expectations (~> 3.12.0)
|
123
|
+
rspec-mocks (~> 3.12.0)
|
124
|
+
rspec-core (3.12.2)
|
125
|
+
rspec-support (~> 3.12.0)
|
126
|
+
rspec-expectations (3.12.3)
|
143
127
|
diff-lcs (>= 1.2.0, < 2.0)
|
144
|
-
rspec-support (~> 3.
|
145
|
-
rspec-mocks (3.
|
128
|
+
rspec-support (~> 3.12.0)
|
129
|
+
rspec-mocks (3.12.6)
|
146
130
|
diff-lcs (>= 1.2.0, < 2.0)
|
147
|
-
rspec-support (~> 3.
|
131
|
+
rspec-support (~> 3.12.0)
|
148
132
|
rspec-retry (0.6.2)
|
149
133
|
rspec-core (> 3.3)
|
150
|
-
rspec-support (3.
|
151
|
-
rubocop (
|
134
|
+
rspec-support (3.12.1)
|
135
|
+
rubocop (1.60.2)
|
136
|
+
json (~> 2.3)
|
137
|
+
language_server-protocol (>= 3.17.0)
|
152
138
|
parallel (~> 1.10)
|
153
|
-
parser (>=
|
139
|
+
parser (>= 3.3.0.2)
|
154
140
|
rainbow (>= 2.2.2, < 4.0)
|
155
|
-
regexp_parser (>= 1.
|
156
|
-
rexml
|
157
|
-
rubocop-ast (>=
|
141
|
+
regexp_parser (>= 1.8, < 3.0)
|
142
|
+
rexml (>= 3.2.5, < 4.0)
|
143
|
+
rubocop-ast (>= 1.30.0, < 2.0)
|
158
144
|
ruby-progressbar (~> 1.7)
|
159
|
-
unicode-display_width (>=
|
160
|
-
rubocop-ast (
|
161
|
-
parser (>= 2.
|
162
|
-
ruby-progressbar (1.
|
163
|
-
|
164
|
-
simplecov (0.21.2)
|
145
|
+
unicode-display_width (>= 2.4.0, < 3.0)
|
146
|
+
rubocop-ast (1.30.0)
|
147
|
+
parser (>= 3.2.1.0)
|
148
|
+
ruby-progressbar (1.13.0)
|
149
|
+
simplecov (0.22.0)
|
165
150
|
docile (~> 1.1)
|
166
151
|
simplecov-html (~> 0.11)
|
167
152
|
simplecov_json_formatter (~> 0.1)
|
168
153
|
simplecov-html (0.12.3)
|
169
154
|
simplecov_json_formatter (0.1.4)
|
170
|
-
|
171
|
-
ffi
|
172
|
-
sys-uname (1.2.2)
|
155
|
+
sys-uname (1.2.3)
|
173
156
|
ffi (~> 1.1)
|
174
|
-
timers (4.3.
|
175
|
-
unicode-display_width (
|
176
|
-
vcr (6.
|
177
|
-
webmock (3.
|
178
|
-
addressable (>= 2.
|
157
|
+
timers (4.3.5)
|
158
|
+
unicode-display_width (2.5.0)
|
159
|
+
vcr (6.2.0)
|
160
|
+
webmock (3.19.1)
|
161
|
+
addressable (>= 2.8.0)
|
179
162
|
crack (>= 0.3.2)
|
180
163
|
hashdiff (>= 0.4.0, < 2.0.0)
|
164
|
+
zeitwerk (2.6.12)
|
181
165
|
|
182
166
|
PLATFORMS
|
183
|
-
java
|
184
167
|
ruby
|
185
168
|
|
186
169
|
DEPENDENCIES
|
@@ -201,4 +184,4 @@ DEPENDENCIES
|
|
201
184
|
webmock
|
202
185
|
|
203
186
|
BUNDLED WITH
|
204
|
-
2.
|
187
|
+
2.4.20
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
5.3.
|
1
|
+
5.3.3
|
data/lib/pubnub/version.rb
CHANGED
data/pubnub.gemspec
CHANGED
@@ -16,7 +16,7 @@ Gem::Specification.new do |spec|
|
|
16
16
|
spec.executables = spec.files.grep(%r{^bin\/}) { |f| File.basename(f) }
|
17
17
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)\/})
|
18
18
|
spec.require_paths = ['lib']
|
19
|
-
spec.required_ruby_version = '>=
|
19
|
+
spec.required_ruby_version = '>= 3.0.0'
|
20
20
|
|
21
21
|
spec.add_dependency 'addressable', '>= 2.0.0'
|
22
22
|
spec.add_dependency 'concurrent-ruby', '~> 1.1.5'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pubnub
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.3.
|
4
|
+
version: 5.3.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- PubNub
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-01-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: addressable
|
@@ -301,7 +301,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
301
301
|
requirements:
|
302
302
|
- - ">="
|
303
303
|
- !ruby/object:Gem::Version
|
304
|
-
version:
|
304
|
+
version: 3.0.0
|
305
305
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
306
306
|
requirements:
|
307
307
|
- - ">="
|