Module: Mongoid::Extensions::String::ClassMethods
- Defined in:
- lib/mongoid/extensions/string.rb
Instance Method Summary collapse
-
#demongoize(object) ⇒ String
Convert the object from its mongo friendly ruby type to this type.
-
#mongoize(object) ⇒ String
Turn the object from the ruby type we deal with to a Mongo friendly type.
Instance Method Details
#demongoize(object) ⇒ String
Convert the object from its mongo friendly ruby type to this type.
175 176 177 |
# File 'lib/mongoid/extensions/string.rb', line 175 def demongoize(object) object.try(:to_s) end |
#mongoize(object) ⇒ String
Turn the object from the ruby type we deal with to a Mongo friendly type.
190 191 192 |
# File 'lib/mongoid/extensions/string.rb', line 190 def mongoize(object) demongoize(object) end |