Class: Integer
Class Method Summary collapse
Class Method Details
.to_mongo(value) ⇒ Object
82 83 84 85 86 87 88 89 |
# File 'lib/mongo_mapper/support.rb', line 82 def self.to_mongo(value) value_to_i = value.to_i if value_to_i == 0 && value != value_to_i value.to_s =~ /^(0x|0b)?0+/ ? 0 : nil else value_to_i end end |