bson 4.9.2 → 4.9.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/ext/bson/init.c +23 -21
- data/lib/bson/version.rb +1 -1
- data/spec/spec_helper.rb +11 -0
- data/spec/support/spec_config.rb +6 -0
- metadata +86 -87
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1d24a5aa6f5678defced03d887f8d946a7c03992cff980281138bb5836b83366
|
4
|
+
data.tar.gz: b22e4544322858b2473b83f4842ba7074efd9a2183c181818ffe7120ae85bf1d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f54379785c0d7c5dbd9e75919aa8ab5f0b6fa04158a2f4789c47bf763b763901c0a64255f4aadffc62a76cc3068e57d31352a49e5acc7fd5e6766fe7d7a32b3b
|
7
|
+
data.tar.gz: 667307d98f30bfc0ea6a3a15bdfed67fd9a935c4512504bae9a2f545d2e1730f1105facf4acd11d03a315efacb877d531029feec01b77d7a54d1182df297b8ae
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data.tar.gz.sig
CHANGED
Binary file
|
data/ext/bson/init.c
CHANGED
@@ -38,25 +38,26 @@ void Init_bson_native()
|
|
38
38
|
char rb_bson_machine_id[256];
|
39
39
|
|
40
40
|
VALUE rb_bson_module = rb_define_module("BSON");
|
41
|
-
|
41
|
+
|
42
42
|
/* Document-class: BSON::ByteBuffer
|
43
43
|
*
|
44
44
|
* Stores BSON-serialized data and provides efficient serialization and
|
45
45
|
* deserialization of common Ruby classes using native code.
|
46
46
|
*/
|
47
47
|
VALUE rb_byte_buffer_class = rb_define_class_under(rb_bson_module, "ByteBuffer", rb_cObject);
|
48
|
-
|
48
|
+
|
49
49
|
VALUE rb_bson_object_id_class = rb_const_get(rb_bson_module, rb_intern("ObjectId"));
|
50
50
|
VALUE rb_bson_object_id_generator_class = rb_const_get(rb_bson_object_id_class, rb_intern("Generator"));
|
51
51
|
VALUE rb_digest_class = rb_const_get(rb_cObject, rb_intern("Digest"));
|
52
52
|
VALUE rb_md5_class = rb_const_get(rb_digest_class, rb_intern("MD5"));
|
53
53
|
|
54
54
|
rb_bson_illegal_key = rb_const_get(rb_const_get(rb_bson_module, rb_intern("String")),rb_intern("IllegalKey"));
|
55
|
+
rb_gc_register_mark_object(rb_bson_illegal_key);
|
55
56
|
|
56
57
|
rb_define_alloc_func(rb_byte_buffer_class, rb_bson_byte_buffer_allocate);
|
57
58
|
rb_define_method(rb_byte_buffer_class, "initialize", rb_bson_byte_buffer_initialize, -1);
|
58
59
|
rb_define_method(rb_byte_buffer_class, "length", rb_bson_byte_buffer_length, 0);
|
59
|
-
|
60
|
+
|
60
61
|
/*
|
61
62
|
* call-seq:
|
62
63
|
* buffer.read_position -> Fixnum
|
@@ -64,13 +65,13 @@ void Init_bson_native()
|
|
64
65
|
* Returns the read position in the buffer.
|
65
66
|
*/
|
66
67
|
rb_define_method(rb_byte_buffer_class, "read_position", rb_bson_byte_buffer_read_position, 0);
|
67
|
-
|
68
|
+
|
68
69
|
rb_define_method(rb_byte_buffer_class, "get_byte", rb_bson_byte_buffer_get_byte, 0);
|
69
70
|
rb_define_method(rb_byte_buffer_class, "get_bytes", rb_bson_byte_buffer_get_bytes, 1);
|
70
71
|
rb_define_method(rb_byte_buffer_class, "get_cstring", rb_bson_byte_buffer_get_cstring, 0);
|
71
72
|
rb_define_method(rb_byte_buffer_class, "get_decimal128_bytes", rb_bson_byte_buffer_get_decimal128_bytes, 0);
|
72
73
|
rb_define_method(rb_byte_buffer_class, "get_double", rb_bson_byte_buffer_get_double, 0);
|
73
|
-
|
74
|
+
|
74
75
|
/*
|
75
76
|
* call-seq:
|
76
77
|
* buffer.get_hash(**options) -> Hash
|
@@ -82,7 +83,7 @@ void Init_bson_native()
|
|
82
83
|
* @return [ BSON::Document ] The decoded document.
|
83
84
|
*/
|
84
85
|
rb_define_method(rb_byte_buffer_class, "get_hash", rb_bson_byte_buffer_get_hash, -1);
|
85
|
-
|
86
|
+
|
86
87
|
/*
|
87
88
|
* call-seq:
|
88
89
|
* buffer.get_array(**options) -> Array
|
@@ -94,11 +95,11 @@ void Init_bson_native()
|
|
94
95
|
* @return [ Array ] The decoded array.
|
95
96
|
*/
|
96
97
|
rb_define_method(rb_byte_buffer_class, "get_array", rb_bson_byte_buffer_get_array, -1);
|
97
|
-
|
98
|
+
|
98
99
|
rb_define_method(rb_byte_buffer_class, "get_int32", rb_bson_byte_buffer_get_int32, 0);
|
99
100
|
rb_define_method(rb_byte_buffer_class, "get_int64", rb_bson_byte_buffer_get_int64, 0);
|
100
101
|
rb_define_method(rb_byte_buffer_class, "get_string", rb_bson_byte_buffer_get_string, 0);
|
101
|
-
|
102
|
+
|
102
103
|
/*
|
103
104
|
* call-seq:
|
104
105
|
* buffer.write_position -> Fixnum
|
@@ -106,7 +107,7 @@ void Init_bson_native()
|
|
106
107
|
* Returns the write position in the buffer.
|
107
108
|
*/
|
108
109
|
rb_define_method(rb_byte_buffer_class, "write_position", rb_bson_byte_buffer_write_position, 0);
|
109
|
-
|
110
|
+
|
110
111
|
/*
|
111
112
|
* call-seq:
|
112
113
|
* buffer.put_byte(binary_str) -> ByteBuffer
|
@@ -117,7 +118,7 @@ void Init_bson_native()
|
|
117
118
|
* Returns the modified +self+.
|
118
119
|
*/
|
119
120
|
rb_define_method(rb_byte_buffer_class, "put_byte", rb_bson_byte_buffer_put_byte, 1);
|
120
|
-
|
121
|
+
|
121
122
|
/*
|
122
123
|
* call-seq:
|
123
124
|
* buffer.put_bytes(binary_str) -> ByteBuffer
|
@@ -170,7 +171,7 @@ void Init_bson_native()
|
|
170
171
|
* instead on the null terminator), unlike the BSON string serialization.
|
171
172
|
*/
|
172
173
|
rb_define_method(rb_byte_buffer_class, "put_cstring", rb_bson_byte_buffer_put_cstring, 1);
|
173
|
-
|
174
|
+
|
174
175
|
/**
|
175
176
|
* call-seq:
|
176
177
|
* buffer.put_symbol(sym) -> ByteBuffer
|
@@ -188,7 +189,7 @@ void Init_bson_native()
|
|
188
189
|
* indistinguishable from a string with the same value written to the buffer.
|
189
190
|
*/
|
190
191
|
rb_define_method(rb_byte_buffer_class, "put_symbol", rb_bson_byte_buffer_put_symbol, 1);
|
191
|
-
|
192
|
+
|
192
193
|
/*
|
193
194
|
* call-seq:
|
194
195
|
* buffer.put_int32(fixnum) -> ByteBuffer
|
@@ -200,7 +201,7 @@ void Init_bson_native()
|
|
200
201
|
* Returns the modified +self+.
|
201
202
|
*/
|
202
203
|
rb_define_method(rb_byte_buffer_class, "put_int32", rb_bson_byte_buffer_put_int32, 1);
|
203
|
-
|
204
|
+
|
204
205
|
/*
|
205
206
|
* call-seq:
|
206
207
|
* buffer.put_int64(fixnum) -> ByteBuffer
|
@@ -212,7 +213,7 @@ void Init_bson_native()
|
|
212
213
|
* Returns the modified +self+.
|
213
214
|
*/
|
214
215
|
rb_define_method(rb_byte_buffer_class, "put_int64", rb_bson_byte_buffer_put_int64, 1);
|
215
|
-
|
216
|
+
|
216
217
|
/*
|
217
218
|
* call-seq:
|
218
219
|
* buffer.put_double(double) -> ByteBuffer
|
@@ -222,7 +223,7 @@ void Init_bson_native()
|
|
222
223
|
* Returns the modified +self+.
|
223
224
|
*/
|
224
225
|
rb_define_method(rb_byte_buffer_class, "put_double", rb_bson_byte_buffer_put_double, 1);
|
225
|
-
|
226
|
+
|
226
227
|
/*
|
227
228
|
* call-seq:
|
228
229
|
* buffer.put_decimal128(low_64bit, high_64bit) -> ByteBuffer
|
@@ -235,7 +236,7 @@ void Init_bson_native()
|
|
235
236
|
* Returns the modified +self+.
|
236
237
|
*/
|
237
238
|
rb_define_method(rb_byte_buffer_class, "put_decimal128", rb_bson_byte_buffer_put_decimal128, 2);
|
238
|
-
|
239
|
+
|
239
240
|
/*
|
240
241
|
* call-seq:
|
241
242
|
* buffer.put_hash(hash) -> ByteBuffer
|
@@ -245,7 +246,7 @@ void Init_bson_native()
|
|
245
246
|
* Returns the modified +self+.
|
246
247
|
*/
|
247
248
|
rb_define_method(rb_byte_buffer_class, "put_hash", rb_bson_byte_buffer_put_hash, 2);
|
248
|
-
|
249
|
+
|
249
250
|
/*
|
250
251
|
* call-seq:
|
251
252
|
* buffer.put_array(array) -> ByteBuffer
|
@@ -255,7 +256,7 @@ void Init_bson_native()
|
|
255
256
|
* Returns the modified +self+.
|
256
257
|
*/
|
257
258
|
rb_define_method(rb_byte_buffer_class, "put_array", rb_bson_byte_buffer_put_array, 2);
|
258
|
-
|
259
|
+
|
259
260
|
/*
|
260
261
|
* call-seq:
|
261
262
|
* buffer.replace_int32(position, fixnum) -> ByteBuffer
|
@@ -272,7 +273,7 @@ void Init_bson_native()
|
|
272
273
|
* Returns the modified +self+.
|
273
274
|
*/
|
274
275
|
rb_define_method(rb_byte_buffer_class, "replace_int32", rb_bson_byte_buffer_replace_int32, 2);
|
275
|
-
|
276
|
+
|
276
277
|
/*
|
277
278
|
* call-seq:
|
278
279
|
* buffer.rewind! -> ByteBuffer
|
@@ -284,7 +285,7 @@ void Init_bson_native()
|
|
284
285
|
* Returns the modified +self+.
|
285
286
|
*/
|
286
287
|
rb_define_method(rb_byte_buffer_class, "rewind!", rb_bson_byte_buffer_rewind, 0);
|
287
|
-
|
288
|
+
|
288
289
|
/*
|
289
290
|
* call-seq:
|
290
291
|
* buffer.to_s -> String
|
@@ -296,7 +297,7 @@ void Init_bson_native()
|
|
296
297
|
* the buffer itself.
|
297
298
|
*/
|
298
299
|
rb_define_method(rb_byte_buffer_class, "to_s", rb_bson_byte_buffer_to_s, 0);
|
299
|
-
|
300
|
+
|
300
301
|
rb_define_method(rb_bson_object_id_generator_class, "next_object_id", rb_bson_object_id_generator_next, -1);
|
301
302
|
|
302
303
|
// Get the object id machine id and hash it.
|
@@ -309,4 +310,5 @@ void Init_bson_native()
|
|
309
310
|
rb_bson_object_id_counter = FIX2INT(rb_funcall(rb_mKernel, rb_intern("rand"), 1, INT2FIX(0x1000000)));
|
310
311
|
|
311
312
|
rb_bson_registry = rb_const_get(rb_bson_module, rb_intern("Registry"));
|
313
|
+
rb_gc_register_mark_object(rb_bson_registry);
|
312
314
|
}
|
data/lib/bson/version.rb
CHANGED
data/spec/spec_helper.rb
CHANGED
@@ -60,4 +60,15 @@ RSpec.configure do |config|
|
|
60
60
|
config.expect_with :rspec do |c|
|
61
61
|
c.syntax = [:should, :expect]
|
62
62
|
end
|
63
|
+
|
64
|
+
# To ensure that calling GC.compact does not produce unexpected behavior,
|
65
|
+
# randomly call GC.compact after a small percentage of tests in the suite.
|
66
|
+
# This behavior is only enabled when the COMPACT environment variable is true.
|
67
|
+
if SpecConfig.instance.compact?
|
68
|
+
config.after do
|
69
|
+
if rand < SpecConfig::COMPACTION_CHANCE
|
70
|
+
GC.compact
|
71
|
+
end
|
72
|
+
end
|
73
|
+
end
|
63
74
|
end
|
data/spec/support/spec_config.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bson
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.9.
|
4
|
+
version: 4.9.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tyler Brock
|
@@ -33,7 +33,7 @@ cert_chain:
|
|
33
33
|
gpvfPNWMwyBDlHaNS3GfO6cRRxBOvEG05GUCsvtTY4Bpe8yjE64wg1ymb47LMOnv
|
34
34
|
Qb1lGORmf/opg45mluKUYl7pQNZHD0d3
|
35
35
|
-----END CERTIFICATE-----
|
36
|
-
date: 2020-06-
|
36
|
+
date: 2020-06-24 00:00:00.000000000 Z
|
37
37
|
dependencies: []
|
38
38
|
description: A fully featured BSON specification implementation in Ruby
|
39
39
|
email:
|
@@ -233,119 +233,118 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
233
233
|
- !ruby/object:Gem::Version
|
234
234
|
version: 1.3.6
|
235
235
|
requirements: []
|
236
|
-
|
237
|
-
rubygems_version: 2.7.6.2
|
236
|
+
rubygems_version: 3.1.2
|
238
237
|
signing_key:
|
239
238
|
specification_version: 4
|
240
239
|
summary: Ruby implementation of the BSON specification
|
241
240
|
test_files:
|
242
|
-
- spec/
|
243
|
-
- spec/
|
244
|
-
- spec/
|
245
|
-
- spec/bson/max_key_spec.rb
|
246
|
-
- spec/bson/byte_buffer_spec.rb
|
247
|
-
- spec/bson/ext_json_parse_spec.rb
|
248
|
-
- spec/bson/byte_buffer_read_spec.rb
|
249
|
-
- spec/bson/decimal128_spec.rb
|
250
|
-
- spec/bson/date_spec.rb
|
251
|
-
- spec/bson/object_spec.rb
|
252
|
-
- spec/bson/int64_spec.rb
|
241
|
+
- spec/bson/regexp_spec.rb
|
242
|
+
- spec/bson/min_key_spec.rb
|
243
|
+
- spec/bson/time_spec.rb
|
253
244
|
- spec/bson/int32_spec.rb
|
254
|
-
- spec/bson/
|
255
|
-
- spec/bson/hash_spec.rb
|
256
|
-
- spec/bson/string_spec.rb
|
257
|
-
- spec/bson/boolean_spec.rb
|
258
|
-
- spec/bson/timestamp_spec.rb
|
259
|
-
- spec/bson/open_struct_spec.rb
|
245
|
+
- spec/bson/code_spec.rb
|
260
246
|
- spec/bson/config_spec.rb
|
261
|
-
- spec/bson/
|
262
|
-
- spec/bson/
|
247
|
+
- spec/bson/undefined_spec.rb
|
248
|
+
- spec/bson/boolean_spec.rb
|
249
|
+
- spec/bson/object_spec.rb
|
250
|
+
- spec/bson/array_spec.rb
|
251
|
+
- spec/bson/hash_spec.rb
|
252
|
+
- spec/bson/date_spec.rb
|
253
|
+
- spec/bson/json_spec.rb
|
263
254
|
- spec/bson/time_with_zone_spec.rb
|
264
|
-
- spec/bson/
|
265
|
-
- spec/bson/
|
255
|
+
- spec/bson/int64_spec.rb
|
256
|
+
- spec/bson/registry_spec.rb
|
257
|
+
- spec/bson/binary_uuid_spec.rb
|
258
|
+
- spec/bson/byte_buffer_read_spec.rb
|
266
259
|
- spec/bson/raw_spec.rb
|
267
260
|
- spec/bson/binary_spec.rb
|
268
|
-
- spec/bson/
|
261
|
+
- spec/bson/max_key_spec.rb
|
262
|
+
- spec/bson/symbol_raw_spec.rb
|
269
263
|
- spec/bson/code_with_scope_spec.rb
|
264
|
+
- spec/bson/byte_buffer_write_spec.rb
|
265
|
+
- spec/bson/date_time_spec.rb
|
266
|
+
- spec/bson/false_class_spec.rb
|
267
|
+
- spec/bson/byte_buffer_spec.rb
|
268
|
+
- spec/bson/string_spec.rb
|
269
|
+
- spec/bson/open_struct_spec.rb
|
270
|
+
- spec/bson/timestamp_spec.rb
|
271
|
+
- spec/bson/ext_json_parse_spec.rb
|
270
272
|
- spec/bson/symbol_spec.rb
|
271
|
-
- spec/bson/
|
272
|
-
- spec/bson/symbol_raw_spec.rb
|
273
|
-
- spec/bson/true_class_spec.rb
|
273
|
+
- spec/bson/decimal128_spec.rb
|
274
274
|
- spec/bson/integer_spec.rb
|
275
|
-
- spec/bson/binary_uuid_spec.rb
|
276
|
-
- spec/bson/time_spec.rb
|
277
|
-
- spec/bson/json_spec.rb
|
278
|
-
- spec/bson/date_time_spec.rb
|
279
275
|
- spec/bson/document_spec.rb
|
280
|
-
- spec/bson/
|
281
|
-
- spec/bson/
|
282
|
-
- spec/bson/
|
283
|
-
- spec/bson/
|
284
|
-
- spec/
|
285
|
-
- spec/
|
276
|
+
- spec/bson/float_spec.rb
|
277
|
+
- spec/bson/nil_class_spec.rb
|
278
|
+
- spec/bson/true_class_spec.rb
|
279
|
+
- spec/bson/object_id_spec.rb
|
280
|
+
- spec/spec_helper.rb
|
281
|
+
- spec/bson_spec.rb
|
286
282
|
- spec/support/utils.rb
|
287
|
-
- spec/
|
288
|
-
- spec/
|
289
|
-
- spec/
|
290
|
-
- spec/
|
291
|
-
- spec/
|
292
|
-
- spec/spec_tests/
|
293
|
-
- spec/spec_tests/
|
294
|
-
- spec/spec_tests/data/corpus_legacy/boolean.json
|
295
|
-
- spec/spec_tests/data/corpus_legacy/oid.json
|
296
|
-
- spec/spec_tests/data/corpus_legacy/regex.json
|
297
|
-
- spec/spec_tests/data/corpus_legacy/array.json
|
298
|
-
- spec/spec_tests/data/corpus_legacy/document.json
|
299
|
-
- spec/spec_tests/data/corpus_legacy/undefined.json
|
300
|
-
- spec/spec_tests/data/corpus_legacy/binary.json
|
301
|
-
- spec/spec_tests/data/corpus_legacy/minkey.json
|
302
|
-
- spec/spec_tests/data/corpus_legacy/maxkey.json
|
303
|
-
- spec/spec_tests/data/corpus_legacy/int32.json
|
304
|
-
- spec/spec_tests/data/corpus_legacy/timestamp.json
|
305
|
-
- spec/spec_tests/data/corpus_legacy/top.json
|
306
|
-
- spec/spec_tests/data/corpus_legacy/string.json
|
307
|
-
- spec/spec_tests/data/corpus_legacy/double.json
|
308
|
-
- spec/spec_tests/data/corpus/code.json
|
309
|
-
- spec/spec_tests/data/corpus/code_w_scope.json
|
310
|
-
- spec/spec_tests/data/corpus/decimal128-1.json
|
311
|
-
- spec/spec_tests/data/corpus/null.json
|
283
|
+
- spec/support/spec_config.rb
|
284
|
+
- spec/support/shared_examples.rb
|
285
|
+
- spec/runners/corpus.rb
|
286
|
+
- spec/runners/corpus_legacy.rb
|
287
|
+
- spec/runners/common_driver.rb
|
288
|
+
- spec/spec_tests/corpus_spec.rb
|
289
|
+
- spec/spec_tests/common_driver_spec.rb
|
312
290
|
- spec/spec_tests/data/corpus/multi-type.json
|
291
|
+
- spec/spec_tests/data/corpus/decimal128-1.json
|
292
|
+
- spec/spec_tests/data/corpus/dbref.json
|
293
|
+
- spec/spec_tests/data/corpus/multi-type-deprecated.json
|
294
|
+
- spec/spec_tests/data/corpus/maxkey.json
|
313
295
|
- spec/spec_tests/data/corpus/boolean.json
|
314
|
-
- spec/spec_tests/data/corpus/symbol.json
|
315
296
|
- spec/spec_tests/data/corpus/datetime.json
|
316
297
|
- spec/spec_tests/data/corpus/oid.json
|
317
|
-
- spec/spec_tests/data/corpus/
|
318
|
-
- spec/spec_tests/data/corpus/int64.json
|
319
|
-
- spec/spec_tests/data/corpus/decimal128-7.json
|
298
|
+
- spec/spec_tests/data/corpus/code.json
|
320
299
|
- spec/spec_tests/data/corpus/array.json
|
321
|
-
- spec/spec_tests/data/corpus/decimal128-
|
322
|
-
- spec/spec_tests/data/corpus/
|
323
|
-
- spec/spec_tests/data/corpus/
|
324
|
-
- spec/spec_tests/data/corpus/
|
300
|
+
- spec/spec_tests/data/corpus/decimal128-7.json
|
301
|
+
- spec/spec_tests/data/corpus/symbol.json
|
302
|
+
- spec/spec_tests/data/corpus/double.json
|
303
|
+
- spec/spec_tests/data/corpus/decimal128-6.json
|
304
|
+
- spec/spec_tests/data/corpus/code_w_scope.json
|
305
|
+
- spec/spec_tests/data/corpus/int64.json
|
325
306
|
- spec/spec_tests/data/corpus/README.md
|
326
|
-
- spec/spec_tests/data/corpus/
|
307
|
+
- spec/spec_tests/data/corpus/string.json
|
308
|
+
- spec/spec_tests/data/corpus/document.json
|
309
|
+
- spec/spec_tests/data/corpus/decimal128-5.json
|
310
|
+
- spec/spec_tests/data/corpus/top.json
|
327
311
|
- spec/spec_tests/data/corpus/decimal128-4.json
|
312
|
+
- spec/spec_tests/data/corpus/null.json
|
313
|
+
- spec/spec_tests/data/corpus/int32.json
|
314
|
+
- spec/spec_tests/data/corpus/dbpointer.json
|
328
315
|
- spec/spec_tests/data/corpus/undefined.json
|
329
|
-
- spec/spec_tests/data/corpus/
|
330
|
-
- spec/spec_tests/data/corpus/
|
316
|
+
- spec/spec_tests/data/corpus/timestamp.json
|
317
|
+
- spec/spec_tests/data/corpus/decimal128-3.json
|
331
318
|
- spec/spec_tests/data/corpus/binary.json
|
332
319
|
- spec/spec_tests/data/corpus/minkey.json
|
320
|
+
- spec/spec_tests/data/corpus/regex.json
|
333
321
|
- spec/spec_tests/data/corpus/decimal128-2.json
|
334
|
-
- spec/spec_tests/data/
|
335
|
-
- spec/spec_tests/data/
|
336
|
-
- spec/spec_tests/data/
|
337
|
-
- spec/spec_tests/data/
|
338
|
-
- spec/spec_tests/data/
|
339
|
-
- spec/spec_tests/data/
|
322
|
+
- spec/spec_tests/data/corpus_legacy/failures/datetime.json
|
323
|
+
- spec/spec_tests/data/corpus_legacy/failures/symbol.json
|
324
|
+
- spec/spec_tests/data/corpus_legacy/failures/int64.json
|
325
|
+
- spec/spec_tests/data/corpus_legacy/failures/dbpointer.json
|
326
|
+
- spec/spec_tests/data/corpus_legacy/maxkey.json
|
327
|
+
- spec/spec_tests/data/corpus_legacy/boolean.json
|
328
|
+
- spec/spec_tests/data/corpus_legacy/oid.json
|
329
|
+
- spec/spec_tests/data/corpus_legacy/code.json
|
330
|
+
- spec/spec_tests/data/corpus_legacy/array.json
|
331
|
+
- spec/spec_tests/data/corpus_legacy/double.json
|
332
|
+
- spec/spec_tests/data/corpus_legacy/code_w_scope.json
|
333
|
+
- spec/spec_tests/data/corpus_legacy/string.json
|
334
|
+
- spec/spec_tests/data/corpus_legacy/document.json
|
335
|
+
- spec/spec_tests/data/corpus_legacy/top.json
|
336
|
+
- spec/spec_tests/data/corpus_legacy/null.json
|
337
|
+
- spec/spec_tests/data/corpus_legacy/int32.json
|
338
|
+
- spec/spec_tests/data/corpus_legacy/undefined.json
|
339
|
+
- spec/spec_tests/data/corpus_legacy/timestamp.json
|
340
|
+
- spec/spec_tests/data/corpus_legacy/binary.json
|
341
|
+
- spec/spec_tests/data/corpus_legacy/minkey.json
|
342
|
+
- spec/spec_tests/data/corpus_legacy/regex.json
|
340
343
|
- spec/spec_tests/data/decimal128/decimal128-1.json
|
341
344
|
- spec/spec_tests/data/decimal128/decimal128-7.json
|
342
|
-
- spec/spec_tests/data/decimal128/decimal128-
|
345
|
+
- spec/spec_tests/data/decimal128/decimal128-6.json
|
343
346
|
- spec/spec_tests/data/decimal128/decimal128-5.json
|
344
347
|
- spec/spec_tests/data/decimal128/decimal128-4.json
|
345
|
-
- spec/spec_tests/data/decimal128/decimal128-
|
348
|
+
- spec/spec_tests/data/decimal128/decimal128-3.json
|
346
349
|
- spec/spec_tests/data/decimal128/decimal128-2.json
|
347
350
|
- spec/spec_tests/corpus_legacy_spec.rb
|
348
|
-
- spec/spec_tests/corpus_spec.rb
|
349
|
-
- spec/spec_tests/common_driver_spec.rb
|
350
|
-
- spec/bson_spec.rb
|
351
|
-
- spec/spec_helper.rb
|
metadata.gz.sig
CHANGED
Binary file
|