What do you guys use to definitely handle decimal numbers? This is
getting me crazy!
I use BigDecimal, but it craps out of the input number is something like
"14,53", Rails transforms it as 14.0
Any solution?
--
Posted via http://www.ruby-forum.com/.
Are you really using the comma in the data?
This IRB session suggests what might be happening (unless there's a en
ENV flag that allows the comma?):
>> require 'bigdecimal'
=> true
>> x = BigDecimal
=> BigDecimal
>> x = 14.4564
=> 14.4564
>> x = 14,4564
=> [14, 4564]
--