number_with_precision()
和number_to_currency()
我有一个非常奇怪的问题。
在我的申请中,如果我没有设置comparison of String with 0 failed
:precision
但是当我在irb中尝试相同的功能时,一切都很好:
1.9.3p0 :058 > helper.number_with_precision(12)
=> "12.000"
1.9.3p0 :059 > helper.number_to_currency(12)
=> "12.00 €"
我查看了我的Gemfile,猜测它可能来自我的一个宝石,但我没找到任何东西。
我有一种奇怪的感觉,即某些事情会覆盖number_with_delimiter()
,导致此错误,但我无法找出答案。
仅供参考,我使用Rails 3.2.1和ruby 1.9.1,这是我的Gemfile:https://gist.github.com/2847099
先谢谢你。