> 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?
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] >> -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

