bson 1.9.0 → 1.9.1.rc0
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.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/VERSION +1 -1
- data/lib/bson/ordered_hash.rb +8 -0
- metadata +5 -5
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 95dcb190c05290166b9fcc731565f10e3f4d8947
|
4
|
+
data.tar.gz: 5688cb97e58bd6648c980eee690ceea14fbcdbb1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4a6086d91a3247b6c3ff032599458f79aebeb5c6b2037e19c52fbe93374521cb70f9290a42db0e057a86440bc3ff5cd4f79781112b66d9335172dea71e391ac1
|
7
|
+
data.tar.gz: b7c6cbf7d8f8e778fa7a6d239df6fd86408e4675ad6a97aea4d50906db20d694f2f82d926c3b2a2c8772ebeb46934bd017e6f86656ebee99aca30bc2470ac316
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data.tar.gz.sig
CHANGED
Binary file
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.9.
|
1
|
+
1.9.1.rc0
|
data/lib/bson/ordered_hash.rb
CHANGED
@@ -33,6 +33,14 @@ module BSON
|
|
33
33
|
end
|
34
34
|
end
|
35
35
|
|
36
|
+
# Allows activesupport Array#extract_options! to extract options
|
37
|
+
# when they are instance of BSON::OrderedHash
|
38
|
+
#
|
39
|
+
# @return [true, false] true if options can be extracted
|
40
|
+
def extractable_options?
|
41
|
+
instance_of?(BSON::OrderedHash)
|
42
|
+
end
|
43
|
+
|
36
44
|
# We only need the body of this class if the RUBY_VERSION is before 1.9
|
37
45
|
if RUBY_VERSION < '1.9'
|
38
46
|
attr_accessor :ordered_keys
|
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: 1.9.
|
4
|
+
version: 1.9.1.rc0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tyler Brock
|
@@ -33,7 +33,7 @@ cert_chain:
|
|
33
33
|
8v7zLF2XliYbfurYIwkcXs8yPn8ggApBIy9bX6VJxRs/l2+UvqzaHIFaFy/F8/GP
|
34
34
|
RNTuXsVG5NDACo7Q
|
35
35
|
-----END CERTIFICATE-----
|
36
|
-
date: 2013-
|
36
|
+
date: 2013-07-02 00:00:00.000000000 Z
|
37
37
|
dependencies: []
|
38
38
|
description: A Ruby BSON implementation for MongoDB. For more information about Mongo,
|
39
39
|
see http://www.mongodb.org. For more information on BSON, see http://www.bsonspec.org.
|
@@ -78,12 +78,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
78
78
|
version: '0'
|
79
79
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
80
80
|
requirements:
|
81
|
-
- - '
|
81
|
+
- - '>'
|
82
82
|
- !ruby/object:Gem::Version
|
83
|
-
version:
|
83
|
+
version: 1.3.1
|
84
84
|
requirements: []
|
85
85
|
rubyforge_project: bson
|
86
|
-
rubygems_version: 2.0.
|
86
|
+
rubygems_version: 2.0.3
|
87
87
|
signing_key:
|
88
88
|
specification_version: 4
|
89
89
|
summary: Ruby implementation of BSON
|
metadata.gz.sig
CHANGED
Binary file
|