Module: Mongoid::Extensions::Integer::ClassMethods
- Defined in:
- lib/mongoid/extensions/integer.rb
Instance Method Summary collapse
-
#mongoize(object) ⇒ String
(also: #demongoize)
Turn the object from the ruby type we deal with to a Mongo friendly type.
Instance Method Details
#mongoize(object) ⇒ String Also known as: demongoize
Turn the object from the ruby type we deal with to a Mongo friendly type.
53 54 55 56 57 58 59 |
# File 'lib/mongoid/extensions/integer.rb', line 53 def mongoize(object) unless object.blank? __numeric__(object).to_i rescue 0 else nil end end |