Module: Mongoid::Extensions::String::ClassMethods
Relationships & Source Files | |
Extension / Inclusion / Inheritance Descendants | |
Extended In:
| |
Defined in: | lib/mongoid/extensions/string.rb |
Instance Method Summary
-
#demongoize(object)
Alias for #mongoize.
-
#mongoize(object) ⇒ String
(also: #demongoize)
Turn the object from the ruby type we deal with to a Mongo friendly type.
Instance Method Details
#demongoize(object)
Alias for #mongoize.
# File 'lib/mongoid/extensions/string.rb', line 172
alias :demongoize :mongoize
#mongoize(object) ⇒ String Also known as: #demongoize
Turn the object from the ruby type we deal with to a Mongo friendly type.
# File 'lib/mongoid/extensions/string.rb', line 169
def mongoize(object) object.try(:to_s) end