Module: Mongoid::Criteria::Queryable::Extensions::Numeric::ClassMethods
- Defined in:
- lib/mongoid/criteria/queryable/extensions/numeric.rb
Instance Method Summary collapse
-
#__numeric__(object) ⇒ Object
private
Get the object as a numeric.
-
#evolve(object) ⇒ Integer
Evolve the object to an integer.
Instance Method Details
#__numeric__(object) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Get the object as a numeric.
53 54 55 |
# File 'lib/mongoid/criteria/queryable/extensions/numeric.rb', line 53 def __numeric__(object) object.to_s =~ /(\A[-+]?[0-9]+\z)|(\.0+\z)|(\.\z)/ ? object.to_i : Float(object) end |
#evolve(object) ⇒ Integer
Evolve the object to an integer.
65 66 67 68 69 |
# File 'lib/mongoid/criteria/queryable/extensions/numeric.rb', line 65 def evolve(object) __evolve__(object) do |obj| __numeric__(obj) rescue obj end end |