我在:
ruby-1.9.3-p194
Rails 3.0.9
我想在我的视图方法中使用带有数值数据类型的 percent_of 。
例如,<%= 10.persent_of(50) %>
它等于20%
。
为此,我创建lib/numeric.rb
了包含
class Numeric
def percent_of(n)
self.to_f / n.to_f * 100.0
end
end
但我得到一个错误:
undefined method `percent_of' for 10:Fixnum
我试图添加定义require 'Numeric'
,但它没有帮助我。
请帮帮我。