Class: Integer
Class Method Summary collapse
Class Method Details
.to_mongo(value) ⇒ Object
76 77 78 79 80 81 82 83 |
# File 'lib/mongo_mapper/support.rb', line 76 def self.to_mongo(value) value_to_i = value.to_i if value_to_i == 0 value.to_s =~ /^(0x|0b)?0+/ ? 0 : nil else value_to_i end end |