Sha256: 23ae45e9ec920859925c8bffd58025d59369ef2b2cdfeca5cac53f8253e15fa7
Contents?: true
Size: 1.28 KB
Versions: 1
Compression:
Stored size: 1.28 KB
Contents
# encoding: utf-8 module Mongoid module Extensions module Float # Convert the float into a time. # # @example Convert the float into a time. # 1335532685.117847.__mongoize_time__ # # @return [ Time ] The float as a time. # # @since 3.0.0 def __mongoize_time__ ::Time.at(self) end # Is the float a number? # # @example Is the object a number?. # object.numeric? # # @return [ true ] Always true. # # @since 3.0.0 def numeric? true end module ClassMethods # Turn the object from the ruby type we deal with to a Mongo friendly # type. # # @example Mongoize the object. # Float.mongoize("123.11") # # @param [ Object ] object The object to mongoize. # # @return [ String ] The object mongoized. # # @since 3.0.0 def mongoize(object) unless object.blank? __numeric__(object).to_f rescue 0.0 else nil end end alias :demongoize :mongoize end end end end ::Float.__send__(:include, Mongoid::Extensions::Float) ::Float.__send__(:extend, Mongoid::Extensions::Float::ClassMethods)
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
mongoid-4.0.0.alpha1 | lib/mongoid/extensions/float.rb |