【发布时间】:2012-01-12 18:49:01
【问题描述】:
我是 Rails 菜鸟...使用 Rails 3.1
我正在尝试使用money_column gem。我安装了 gem,添加到我的 gemfile 中,捆绑安装。我像示例一样设置了 Product 模型。
我的产品型号是:
class Product < ActiveRecord::Base
belongs_to :product_category
attr_accessible :sku, :name, :description, :price, :available, :product_category_id
money_column :price
end
我在seeds.rb 中创建了一些种子数据。但是,当我运行 rake db:seed 时,我收到了一个错误:
rake aborted!
undefined method `money_column' for #<Class:0x007fccbd26e468>
我在安装 money_column 时是否遗漏了什么?
【问题讨论】:
-
我建议您看看 Money gem。它非常很好地处理金钱、货币和兑换。 github.com/RubyMoney/money