Module: Mongoid::Extensions::Hash::ClassMethods
- Defined in:
- build/mongoid-master/lib/mongoid/extensions/hash.rb
Instance Method Summary collapse
-
#mongoize(object) ⇒ Hash | nil
Turn the object from the ruby type we deal with to a Mongo friendly type.
-
#resizable? ⇒ true
Can the size of this object change?.
Instance Method Details
#mongoize(object) ⇒ Hash | nil
Turn the object from the ruby type we deal with to a Mongo friendly type.
221 222 223 224 225 226 227 228 229 |
# File 'build/mongoid-master/lib/mongoid/extensions/hash.rb', line 221 def mongoize(object) return if object.nil? case object when BSON::Document object.dup.transform_values!(&:mongoize) when Hash BSON::Document.new(object.transform_values(&:mongoize)) end end |
#resizable? ⇒ true
Can the size of this object change?
237 238 239 |
# File 'build/mongoid-master/lib/mongoid/extensions/hash.rb', line 237 def resizable? true end |