bson 4.9.0-java → 4.9.5-java

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d813794a16c63fb3d88a4a2f3e2e4646bfa085a829c6c5417bc32bdbcf9bc536
4
- data.tar.gz: 4f5364cb322e23752870e64651fc2131346728c01e050472fef9af2d4b7e21bb
3
+ metadata.gz: 076c6afb241755ea9ecabc3851bf2a63e1e468218e1cabf47bfea79cbc666c8d
4
+ data.tar.gz: 9410f895fbbee05b6c0fa1bd985ec40da927800cfae994319508bbaca62ae95a
5
5
  SHA512:
6
- metadata.gz: ccbbee2e2dec5fe40a9f4b9a3ee4ac206e9ab224d11e54371260d73cec4bf61a6ce773d9a6f6bd4ea2b8ab91db80ef75678671fe590b2c669d6a089fd3b35ea1
7
- data.tar.gz: 2eb0ca5dc4a283f67d18949fe0765aeb7e598af1f6911227f7debe44e0f4b3f891e46571cc16405aa16a80a621244db78241a3dcb6f75ba9e0d671ffdf1f0a8a
6
+ metadata.gz: d148ccfdbc61664f314735748a370627835558382a29e1bebc3ace59c75488e5f6d9351b74e75fff8f8ad4d2bbbb1f47f9dbfae7133abdc8bb66cadc86b1c043
7
+ data.tar.gz: 0cce82125862e31e0020bd83a99d33548b9a41768148171c88daf384047c7eaf7c99588a7e71319ceeb8649b7b0dadca460370d25e7ea6bb29b99abaeb0223d8
Binary file
@@ -0,0 +1,2 @@
1
+ ��� �T9���Aize.>�Z�~� �U�K� � �`�>YJ[������)�dPN ��-�0%>��RK���S�s���gi��#�?ܩX.�~I��s�v�Q0���J������7ʖ�󟹪�W�jF�o�-�l6����d8&����ݕb v��P�;r��;>1�� �����А.Xi
2
+ S��ܳ� �ߜ-\>���k����Z�W�&]�3����Ɓ#xQ���4�c� =�%\?�`ԁYLf'�a����
data/README.md CHANGED
@@ -1,8 +1,9 @@
1
- BSON [![Build Status](https://secure.travis-ci.org/mongodb/bson-ruby.svg?branch=master)](http://travis-ci.org/mongodb/bson-ruby)
2
- [![Build status Windows](https://ci.appveyor.com/api/projects/status/p5aqko7umsx351nm?svg=true)](https://ci.appveyor.com/project/p-mongo/bson-ruby/branch/master)
3
- [![Code Climate](https://codeclimate.com/github/mongodb/bson-ruby.svg)](https://codeclimate.com/github/mongodb/bson-ruby)
4
- [![Coverage Status](https://coveralls.io/repos/mongodb/bson-ruby/badge.svg?branch=master)](https://coveralls.io/r/mongodb/bson-ruby?branch=master)
5
- [![Inline docs](http://inch-ci.org/github/mongodb/bson-ruby.svg?branch=master)](http://inch-ci.org/github/mongodb/bson-ruby)
1
+ BSON
2
+ [![Gem Version][rubygems-img]][rubygems-url]
3
+ [![Build Status][travis-img]][travis-url]
4
+ [![Build status Windows][appveyor-img]][appveyor-url]
5
+ [![Coverage Status][coveralls-img]][coveralls-url]
6
+ [![Inline docs][inch-img]][inch-url]
6
7
  ====
7
8
 
8
9
  An implementation of the BSON specification in Ruby.
@@ -51,3 +52,14 @@ distributed under the License is distributed on an "AS IS" BASIS,
51
52
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
52
53
  See the License for the specific language governing permissions and
53
54
  limitations under the License.
55
+
56
+ [rubygems-img]: https://badge.fury.io/rb/bson.svg
57
+ [rubygems-url]: http://badge.fury.io/rb/bson
58
+ [travis-img]: https://secure.travis-ci.org/mongodb/bson-ruby.svg?branch=master
59
+ [travis-url]: http://travis-ci.org/mongodb/bson-ruby
60
+ [appveyor-img]: https://ci.appveyor.com/api/projects/status/p5aqko7umsx351nm?svg=true
61
+ [appveyor-url]: https://ci.appveyor.com/project/p-mongo/bson-ruby/branch/master
62
+ [coveralls-img]: https://coveralls.io/repos/mongodb/bson-ruby/badge.svg?branch=master
63
+ [coveralls-url]: https://coveralls.io/r/mongodb/bson-ruby?branch=master
64
+ [inch-img]: http://inch-ci.org/github/mongodb/bson-ruby.svg?branch=master
65
+ [inch-url]: http://inch-ci.org/github/mongodb/bson-ruby
Binary file
@@ -47,6 +47,9 @@ module BSON
47
47
  position = buffer.length
48
48
  buffer.put_int32(0)
49
49
  each_with_index do |value, index|
50
+ unless value.respond_to?(:bson_type)
51
+ raise Error::UnserializableClass, "Array element at position #{index} does not define its BSON serialized type: #{value}"
52
+ end
50
53
  buffer.put_byte(value.bson_type)
51
54
  buffer.put_cstring(index.to_s)
52
55
  value.to_bson(buffer, validating_keys)
@@ -17,5 +17,11 @@ module BSON
17
17
  # Exception raised when BSON decoding fails.
18
18
  class BSONDecodeError < Error
19
19
  end
20
+
21
+ # Exception raised when serializing an Array or Hash to BSON and an
22
+ # array or hash element is of a class that does not define how to serialize
23
+ # itself to BSON.
24
+ class UnserializableClass < Error
25
+ end
20
26
  end
21
27
  end
@@ -44,6 +44,9 @@ module BSON
44
44
  position = buffer.length
45
45
  buffer.put_int32(0)
46
46
  each do |field, value|
47
+ unless value.respond_to?(:bson_type)
48
+ raise Error::UnserializableClass, "Hash value for key '#{field}' does not define its BSON serialized type: #{value}"
49
+ end
47
50
  buffer.put_byte(value.bson_type)
48
51
  key = field.to_bson_key(validating_keys)
49
52
  begin
@@ -165,7 +165,13 @@ module BSON
165
165
  #
166
166
  # @since 3.1.0
167
167
  def respond_to?(method, include_private = false)
168
- compile.respond_to?(method, include_private) || super
168
+ if defined?(@pattern)
169
+ compile.respond_to?(method, include_private) || super
170
+ else
171
+ # YAML calls #respond_to? during deserialization, before the object
172
+ # is initialized.
173
+ super
174
+ end
169
175
  end
170
176
 
171
177
  # Encode the Raw Regexp object to BSON.
@@ -13,5 +13,5 @@
13
13
  # limitations under the License.
14
14
 
15
15
  module BSON
16
- VERSION = "4.9.0".freeze
16
+ VERSION = "4.9.5".freeze
17
17
  end
Binary file
@@ -132,6 +132,23 @@ describe Array do
132
132
  end
133
133
  end
134
134
  end
135
+
136
+ context 'when array contains value of an unserializable class' do
137
+ class ArraySpecUnserializableClass
138
+ end
139
+
140
+ let(:obj) do
141
+ [ArraySpecUnserializableClass.new]
142
+ end
143
+
144
+ it 'raises UnserializableClass' do
145
+ lambda do
146
+ obj.to_bson
147
+ end.should raise_error(BSON::Error::UnserializableClass,
148
+ # C extension does not provide element position in the exception message.
149
+ /(Array element at position 0|Value) does not define its BSON serialized type:.*ArraySpecUnserializableClass/)
150
+ end
151
+ end
135
152
  end
136
153
 
137
154
  describe "#to_bson_normalized_value" do
@@ -227,6 +227,23 @@ describe Hash do
227
227
  end
228
228
  end
229
229
  end
230
+
231
+ context 'when hash contains value of an unserializable class' do
232
+ class HashSpecUnserializableClass
233
+ end
234
+
235
+ let(:obj) do
236
+ {foo: HashSpecUnserializableClass.new}
237
+ end
238
+
239
+ it 'raises UnserializableClass' do
240
+ lambda do
241
+ obj.to_bson
242
+ end.should raise_error(BSON::Error::UnserializableClass,
243
+ # C extension does not provide hash key in the exception message.
244
+ /(Hash value for key 'foo'|Value) does not define its BSON serialized type:.*HashSpecUnserializableClass/)
245
+ end
246
+ end
230
247
  end
231
248
 
232
249
  describe '#to_bson' do
@@ -580,4 +580,15 @@ describe Regexp::Raw do
580
580
  end
581
581
  end
582
582
  end
583
- end
583
+
584
+ describe 'yaml loading' do
585
+ let(:regexp) { described_class.new('hello.world', 's') }
586
+
587
+ it 'round-trips' do
588
+ actual = YAML.load(regexp.to_yaml)
589
+ actual.pattern.should == 'hello.world'
590
+ actual.options.should == 's'
591
+ actual.compile.should =~ "hello\nworld"
592
+ end
593
+ end
594
+ end
@@ -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
@@ -3,7 +3,13 @@ require 'singleton'
3
3
  class SpecConfig
4
4
  include Singleton
5
5
 
6
+ COMPACTION_CHANCE = 0.001
7
+
6
8
  def active_support?
7
9
  %w(1 true yes).include?(ENV['WITH_ACTIVE_SUPPORT'])
8
10
  end
11
+
12
+ def compact?
13
+ %w(1 true yes).include?(ENV['COMPACT'])
14
+ end
9
15
  end
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.0
4
+ version: 4.9.5
5
5
  platform: java
6
6
  authors:
7
7
  - Tyler Brock
@@ -11,8 +11,29 @@ authors:
11
11
  - Gary Murakami
12
12
  autorequire:
13
13
  bindir: bin
14
- cert_chain: []
15
- date: 2020-06-02 00:00:00.000000000 Z
14
+ cert_chain:
15
+ - |
16
+ -----BEGIN CERTIFICATE-----
17
+ MIIDRDCCAiygAwIBAgIBATANBgkqhkiG9w0BAQsFADAmMSQwIgYDVQQDDBtkcml2
18
+ ZXItcnVieS9EQz0xMGdlbi9EQz1jb20wHhcNMjAwMTIzMTkzNjAxWhcNMjEwMTIy
19
+ MTkzNjAxWjAmMSQwIgYDVQQDDBtkcml2ZXItcnVieS9EQz0xMGdlbi9EQz1jb20w
20
+ ggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDRXUgGvH0ZtWwDPc2umdHw
21
+ B+INNm6jNTRp8PMyUKxPzxaxX2OiBQk9gLC3zsK9ZmlZu4lNfpHVSCEPoiP/fhPg
22
+ Kyfq2xld3Qz0Pki5d5i0/r14343MTKiNiFulLlbbdlN0cXeEFNJHUycZnD2LOXwz
23
+ egYGHOl14FI8t5visIWtqRnLXXIlDsBHzmeEZjUZRGSgjC0R3RT/I+Fk5yUhn1w4
24
+ rqFyAiW+cjjzmT7mmqT0jV6fd0JFHbKnSgt9iPijKSimBgUOsorHwOTMlTzwsy0d
25
+ ZT+al1RiT5zqlAJLxFHwmoYOxD/bSNtKsYl60ek0hK2mISBVy9BBmLvCgHDx5uSp
26
+ AgMBAAGjfTB7MAkGA1UdEwQCMAAwCwYDVR0PBAQDAgSwMB0GA1UdDgQWBBRbd1mx
27
+ fvSaVIwKI+tnEAYDW/B81zAgBgNVHREEGTAXgRVkcml2ZXItcnVieUAxMGdlbi5j
28
+ b20wIAYDVR0SBBkwF4EVZHJpdmVyLXJ1YnlAMTBnZW4uY29tMA0GCSqGSIb3DQEB
29
+ CwUAA4IBAQBfX4dwxG5PhtxES/LDEOaZIZXyaX6CKe367zhW+HxWbSOXMQJFkIQj
30
+ m7tzT+sDFJXyiOv5cPtfpUam5pTiryzRw5HD6oxlPIt5vO15EJ69v++3m7shMLbw
31
+ amZOajKXmu2ZGZfhOtj7bOTwmOj1AnWLKeOQIR3STvvfZCD+6dt1XenW7CdjCsxE
32
+ ifervPjLFqFPsMOgaxikhgPK6bRtszrQhJSYlifKKzxbX1hYAsmGL7IxjubFSV5r
33
+ gpvfPNWMwyBDlHaNS3GfO6cRRxBOvEG05GUCsvtTY4Bpe8yjE64wg1ymb47LMOnv
34
+ Qb1lGORmf/opg45mluKUYl7pQNZHD0d3
35
+ -----END CERTIFICATE-----
36
+ date: 2020-10-13 00:00:00.000000000 Z
16
37
  dependencies: []
17
38
  description: A fully featured BSON specification implementation in Ruby
18
39
  email:
@@ -68,6 +89,7 @@ files:
68
89
  - lib/bson/true_class.rb
69
90
  - lib/bson/undefined.rb
70
91
  - lib/bson/version.rb
92
+ - lib/bson_native.bundle
71
93
  - spec/bson/array_spec.rb
72
94
  - spec/bson/binary_spec.rb
73
95
  - spec/bson/binary_uuid_spec.rb
@@ -207,113 +229,113 @@ signing_key:
207
229
  specification_version: 4
208
230
  summary: Ruby implementation of the BSON specification
209
231
  test_files:
210
- - spec/bson_spec.rb
211
232
  - spec/spec_helper.rb
212
- - spec/runners/corpus.rb
213
- - spec/runners/corpus_legacy.rb
214
- - spec/runners/common_driver.rb
215
- - spec/bson/max_key_spec.rb
216
- - spec/bson/byte_buffer_spec.rb
217
- - spec/bson/ext_json_parse_spec.rb
218
- - spec/bson/byte_buffer_read_spec.rb
219
- - spec/bson/decimal128_spec.rb
220
- - spec/bson/date_spec.rb
221
- - spec/bson/object_spec.rb
222
- - spec/bson/int64_spec.rb
223
- - spec/bson/int32_spec.rb
224
- - spec/bson/object_id_spec.rb
225
- - spec/bson/hash_spec.rb
226
- - spec/bson/string_spec.rb
227
- - spec/bson/boolean_spec.rb
228
- - spec/bson/timestamp_spec.rb
229
- - spec/bson/open_struct_spec.rb
230
- - spec/bson/config_spec.rb
231
- - spec/bson/nil_class_spec.rb
232
- - spec/bson/regexp_spec.rb
233
- - spec/bson/time_with_zone_spec.rb
234
- - spec/bson/code_spec.rb
235
- - spec/bson/false_class_spec.rb
236
- - spec/bson/raw_spec.rb
237
- - spec/bson/binary_spec.rb
238
- - spec/bson/array_spec.rb
239
- - spec/bson/code_with_scope_spec.rb
240
- - spec/bson/symbol_spec.rb
241
- - spec/bson/float_spec.rb
242
- - spec/bson/symbol_raw_spec.rb
243
- - spec/bson/true_class_spec.rb
244
- - spec/bson/integer_spec.rb
245
- - spec/bson/binary_uuid_spec.rb
246
- - spec/bson/time_spec.rb
247
- - spec/bson/json_spec.rb
248
- - spec/bson/date_time_spec.rb
249
- - spec/bson/document_spec.rb
250
- - spec/bson/byte_buffer_write_spec.rb
251
- - spec/bson/min_key_spec.rb
252
- - spec/bson/undefined_spec.rb
253
- - spec/bson/registry_spec.rb
254
- - spec/support/shared_examples.rb
255
- - spec/support/spec_config.rb
256
- - spec/support/utils.rb
233
+ - spec/bson_spec.rb
234
+ - spec/spec_tests/common_driver_spec.rb
257
235
  - spec/spec_tests/corpus_legacy_spec.rb
258
236
  - spec/spec_tests/corpus_spec.rb
259
- - spec/spec_tests/common_driver_spec.rb
260
- - spec/spec_tests/data/corpus_legacy/code.json
261
- - spec/spec_tests/data/corpus_legacy/code_w_scope.json
262
- - spec/spec_tests/data/corpus_legacy/null.json
263
- - spec/spec_tests/data/corpus_legacy/boolean.json
264
- - spec/spec_tests/data/corpus_legacy/oid.json
265
- - spec/spec_tests/data/corpus_legacy/regex.json
266
- - spec/spec_tests/data/corpus_legacy/array.json
267
- - spec/spec_tests/data/corpus_legacy/document.json
268
- - spec/spec_tests/data/corpus_legacy/undefined.json
269
- - spec/spec_tests/data/corpus_legacy/binary.json
270
- - spec/spec_tests/data/corpus_legacy/minkey.json
271
- - spec/spec_tests/data/corpus_legacy/maxkey.json
272
- - spec/spec_tests/data/corpus_legacy/int32.json
273
- - spec/spec_tests/data/corpus_legacy/timestamp.json
274
- - spec/spec_tests/data/corpus_legacy/top.json
275
- - spec/spec_tests/data/corpus_legacy/string.json
276
- - spec/spec_tests/data/corpus_legacy/double.json
277
- - spec/spec_tests/data/corpus_legacy/failures/symbol.json
278
- - spec/spec_tests/data/corpus_legacy/failures/datetime.json
279
- - spec/spec_tests/data/corpus_legacy/failures/int64.json
280
- - spec/spec_tests/data/corpus_legacy/failures/dbpointer.json
281
- - spec/spec_tests/data/corpus/code.json
282
- - spec/spec_tests/data/corpus/code_w_scope.json
283
- - spec/spec_tests/data/corpus/decimal128-1.json
284
- - spec/spec_tests/data/corpus/null.json
285
- - spec/spec_tests/data/corpus/multi-type.json
286
- - spec/spec_tests/data/corpus/boolean.json
287
- - spec/spec_tests/data/corpus/symbol.json
288
- - spec/spec_tests/data/corpus/datetime.json
289
- - spec/spec_tests/data/corpus/oid.json
290
- - spec/spec_tests/data/corpus/regex.json
291
- - spec/spec_tests/data/corpus/int64.json
292
- - spec/spec_tests/data/corpus/decimal128-7.json
293
237
  - spec/spec_tests/data/corpus/array.json
294
- - spec/spec_tests/data/corpus/decimal128-3.json
295
- - spec/spec_tests/data/corpus/decimal128-5.json
296
238
  - spec/spec_tests/data/corpus/document.json
297
- - spec/spec_tests/data/corpus/multi-type-deprecated.json
298
- - spec/spec_tests/data/corpus/README.md
239
+ - spec/spec_tests/data/corpus/decimal128-7.json
240
+ - spec/spec_tests/data/corpus/decimal128-3.json
241
+ - spec/spec_tests/data/corpus/maxkey.json
242
+ - spec/spec_tests/data/corpus/code.json
299
243
  - spec/spec_tests/data/corpus/dbpointer.json
244
+ - spec/spec_tests/data/corpus/int32.json
245
+ - spec/spec_tests/data/corpus/README.md
246
+ - spec/spec_tests/data/corpus/decimal128-5.json
300
247
  - spec/spec_tests/data/corpus/decimal128-4.json
301
- - spec/spec_tests/data/corpus/undefined.json
248
+ - spec/spec_tests/data/corpus/decimal128-2.json
249
+ - spec/spec_tests/data/corpus/double.json
250
+ - spec/spec_tests/data/corpus/code_w_scope.json
251
+ - spec/spec_tests/data/corpus/binary.json
252
+ - spec/spec_tests/data/corpus/oid.json
253
+ - spec/spec_tests/data/corpus/null.json
302
254
  - spec/spec_tests/data/corpus/decimal128-6.json
255
+ - spec/spec_tests/data/corpus/int64.json
303
256
  - spec/spec_tests/data/corpus/dbref.json
304
- - spec/spec_tests/data/corpus/binary.json
257
+ - spec/spec_tests/data/corpus/regex.json
305
258
  - spec/spec_tests/data/corpus/minkey.json
306
- - spec/spec_tests/data/corpus/decimal128-2.json
307
- - spec/spec_tests/data/corpus/maxkey.json
308
- - spec/spec_tests/data/corpus/int32.json
309
- - spec/spec_tests/data/corpus/timestamp.json
259
+ - spec/spec_tests/data/corpus/multi-type.json
310
260
  - spec/spec_tests/data/corpus/top.json
261
+ - spec/spec_tests/data/corpus/symbol.json
262
+ - spec/spec_tests/data/corpus/multi-type-deprecated.json
263
+ - spec/spec_tests/data/corpus/undefined.json
264
+ - spec/spec_tests/data/corpus/datetime.json
311
265
  - spec/spec_tests/data/corpus/string.json
312
- - spec/spec_tests/data/corpus/double.json
313
- - spec/spec_tests/data/decimal128/decimal128-1.json
266
+ - spec/spec_tests/data/corpus/boolean.json
267
+ - spec/spec_tests/data/corpus/timestamp.json
268
+ - spec/spec_tests/data/corpus/decimal128-1.json
314
269
  - spec/spec_tests/data/decimal128/decimal128-7.json
315
270
  - spec/spec_tests/data/decimal128/decimal128-3.json
316
271
  - spec/spec_tests/data/decimal128/decimal128-5.json
317
272
  - spec/spec_tests/data/decimal128/decimal128-4.json
318
- - spec/spec_tests/data/decimal128/decimal128-6.json
319
273
  - spec/spec_tests/data/decimal128/decimal128-2.json
274
+ - spec/spec_tests/data/decimal128/decimal128-6.json
275
+ - spec/spec_tests/data/decimal128/decimal128-1.json
276
+ - spec/spec_tests/data/corpus_legacy/array.json
277
+ - spec/spec_tests/data/corpus_legacy/document.json
278
+ - spec/spec_tests/data/corpus_legacy/maxkey.json
279
+ - spec/spec_tests/data/corpus_legacy/code.json
280
+ - spec/spec_tests/data/corpus_legacy/int32.json
281
+ - spec/spec_tests/data/corpus_legacy/double.json
282
+ - spec/spec_tests/data/corpus_legacy/code_w_scope.json
283
+ - spec/spec_tests/data/corpus_legacy/binary.json
284
+ - spec/spec_tests/data/corpus_legacy/oid.json
285
+ - spec/spec_tests/data/corpus_legacy/null.json
286
+ - spec/spec_tests/data/corpus_legacy/regex.json
287
+ - spec/spec_tests/data/corpus_legacy/minkey.json
288
+ - spec/spec_tests/data/corpus_legacy/top.json
289
+ - spec/spec_tests/data/corpus_legacy/undefined.json
290
+ - spec/spec_tests/data/corpus_legacy/string.json
291
+ - spec/spec_tests/data/corpus_legacy/boolean.json
292
+ - spec/spec_tests/data/corpus_legacy/timestamp.json
293
+ - spec/spec_tests/data/corpus_legacy/failures/dbpointer.json
294
+ - spec/spec_tests/data/corpus_legacy/failures/int64.json
295
+ - spec/spec_tests/data/corpus_legacy/failures/symbol.json
296
+ - spec/spec_tests/data/corpus_legacy/failures/datetime.json
297
+ - spec/runners/corpus.rb
298
+ - spec/runners/corpus_legacy.rb
299
+ - spec/runners/common_driver.rb
300
+ - spec/support/spec_config.rb
301
+ - spec/support/shared_examples.rb
302
+ - spec/support/utils.rb
303
+ - spec/bson/ext_json_parse_spec.rb
304
+ - spec/bson/object_spec.rb
305
+ - spec/bson/json_spec.rb
306
+ - spec/bson/true_class_spec.rb
307
+ - spec/bson/byte_buffer_read_spec.rb
308
+ - spec/bson/config_spec.rb
309
+ - spec/bson/int32_spec.rb
310
+ - spec/bson/regexp_spec.rb
311
+ - spec/bson/symbol_raw_spec.rb
312
+ - spec/bson/open_struct_spec.rb
313
+ - spec/bson/document_spec.rb
314
+ - spec/bson/min_key_spec.rb
315
+ - spec/bson/false_class_spec.rb
316
+ - spec/bson/code_spec.rb
317
+ - spec/bson/symbol_spec.rb
318
+ - spec/bson/object_id_spec.rb
319
+ - spec/bson/decimal128_spec.rb
320
+ - spec/bson/registry_spec.rb
321
+ - spec/bson/time_spec.rb
322
+ - spec/bson/boolean_spec.rb
323
+ - spec/bson/byte_buffer_spec.rb
324
+ - spec/bson/hash_spec.rb
325
+ - spec/bson/undefined_spec.rb
326
+ - spec/bson/raw_spec.rb
327
+ - spec/bson/string_spec.rb
328
+ - spec/bson/timestamp_spec.rb
329
+ - spec/bson/date_time_spec.rb
330
+ - spec/bson/max_key_spec.rb
331
+ - spec/bson/int64_spec.rb
332
+ - spec/bson/byte_buffer_write_spec.rb
333
+ - spec/bson/date_spec.rb
334
+ - spec/bson/binary_spec.rb
335
+ - spec/bson/code_with_scope_spec.rb
336
+ - spec/bson/integer_spec.rb
337
+ - spec/bson/binary_uuid_spec.rb
338
+ - spec/bson/nil_class_spec.rb
339
+ - spec/bson/array_spec.rb
340
+ - spec/bson/time_with_zone_spec.rb
341
+ - spec/bson/float_spec.rb
Binary file