bson 1.2.0-jruby
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of bson might be problematic. Click here for more details.
- data/LICENSE.txt +190 -0
- data/bin/b2json +65 -0
- data/bin/j2bson +72 -0
- data/ext/java/jar/bson-2.2.jar +0 -0
- data/ext/java/jar/jbson.jar +0 -0
- data/ext/java/jar/mongo-2.4.jar +0 -0
- data/lib/bson.rb +108 -0
- data/lib/bson/bson_c.rb +39 -0
- data/lib/bson/bson_java.rb +28 -0
- data/lib/bson/bson_ruby.rb +612 -0
- data/lib/bson/byte_buffer.rb +276 -0
- data/lib/bson/exceptions.rb +44 -0
- data/lib/bson/ordered_hash.rb +159 -0
- data/lib/bson/types/binary.rb +56 -0
- data/lib/bson/types/code.rb +59 -0
- data/lib/bson/types/dbref.rb +46 -0
- data/lib/bson/types/min_max_keys.rb +60 -0
- data/lib/bson/types/object_id.rb +194 -0
- data/test/bson/binary_test.rb +15 -0
- data/test/bson/bson_test.rb +565 -0
- data/test/bson/byte_buffer_test.rb +190 -0
- data/test/bson/hash_with_indifferent_access_test.rb +38 -0
- data/test/bson/json_test.rb +17 -0
- data/test/bson/object_id_test.rb +141 -0
- data/test/bson/ordered_hash_test.rb +197 -0
- metadata +100 -0
metadata
ADDED
@@ -0,0 +1,100 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: bson
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 31
|
5
|
+
prerelease:
|
6
|
+
segments:
|
7
|
+
- 1
|
8
|
+
- 2
|
9
|
+
- 0
|
10
|
+
version: 1.2.0
|
11
|
+
platform: jruby
|
12
|
+
authors:
|
13
|
+
- Jim Menard
|
14
|
+
- Mike Dirolf
|
15
|
+
- Kyle Banker
|
16
|
+
autorequire:
|
17
|
+
bindir: bin
|
18
|
+
cert_chain: []
|
19
|
+
|
20
|
+
date: 2011-01-18 00:00:00 -05:00
|
21
|
+
default_executable:
|
22
|
+
dependencies: []
|
23
|
+
|
24
|
+
description: A Ruby BSON implementation for MongoDB. For more information about Mongo, see http://www.mongodb.org. For more information on BSON, see http://www.bsonspec.org.
|
25
|
+
email: mongodb-dev@googlegroups.com
|
26
|
+
executables:
|
27
|
+
- b2json
|
28
|
+
- j2bson
|
29
|
+
extensions: []
|
30
|
+
|
31
|
+
extra_rdoc_files: []
|
32
|
+
|
33
|
+
files:
|
34
|
+
- LICENSE.txt
|
35
|
+
- lib/bson.rb
|
36
|
+
- lib/bson/bson_ruby.rb
|
37
|
+
- lib/bson/bson_c.rb
|
38
|
+
- lib/bson/exceptions.rb
|
39
|
+
- lib/bson/ordered_hash.rb
|
40
|
+
- lib/bson/types/dbref.rb
|
41
|
+
- lib/bson/types/code.rb
|
42
|
+
- lib/bson/types/object_id.rb
|
43
|
+
- lib/bson/types/binary.rb
|
44
|
+
- lib/bson/types/min_max_keys.rb
|
45
|
+
- lib/bson/byte_buffer.rb
|
46
|
+
- lib/bson/bson_java.rb
|
47
|
+
- bin/b2json
|
48
|
+
- bin/j2bson
|
49
|
+
- ext/java/jar/bson-2.2.jar
|
50
|
+
- ext/java/jar/jbson.jar
|
51
|
+
- ext/java/jar/mongo-2.4.jar
|
52
|
+
- test/bson/byte_buffer_test.rb
|
53
|
+
- test/bson/binary_test.rb
|
54
|
+
- test/bson/object_id_test.rb
|
55
|
+
- test/bson/json_test.rb
|
56
|
+
- test/bson/bson_test.rb
|
57
|
+
- test/bson/ordered_hash_test.rb
|
58
|
+
- test/bson/hash_with_indifferent_access_test.rb
|
59
|
+
has_rdoc: true
|
60
|
+
homepage: http://www.mongodb.org
|
61
|
+
licenses: []
|
62
|
+
|
63
|
+
post_install_message:
|
64
|
+
rdoc_options: []
|
65
|
+
|
66
|
+
require_paths:
|
67
|
+
- lib
|
68
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
69
|
+
none: false
|
70
|
+
requirements:
|
71
|
+
- - ">="
|
72
|
+
- !ruby/object:Gem::Version
|
73
|
+
hash: 3
|
74
|
+
segments:
|
75
|
+
- 0
|
76
|
+
version: "0"
|
77
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
78
|
+
none: false
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
hash: 3
|
83
|
+
segments:
|
84
|
+
- 0
|
85
|
+
version: "0"
|
86
|
+
requirements: []
|
87
|
+
|
88
|
+
rubyforge_project:
|
89
|
+
rubygems_version: 1.4.1
|
90
|
+
signing_key:
|
91
|
+
specification_version: 3
|
92
|
+
summary: Ruby implementation of BSON
|
93
|
+
test_files:
|
94
|
+
- test/bson/byte_buffer_test.rb
|
95
|
+
- test/bson/binary_test.rb
|
96
|
+
- test/bson/object_id_test.rb
|
97
|
+
- test/bson/json_test.rb
|
98
|
+
- test/bson/bson_test.rb
|
99
|
+
- test/bson/ordered_hash_test.rb
|
100
|
+
- test/bson/hash_with_indifferent_access_test.rb
|