我是一个使用Rails 3.1的rails noob ...
我正在尝试使用money_column gem。我安装了gem,添加到我的gemfile,bundle install。我设置了一个类似于示例的产品模型。
我的产品型号是:
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时遗漏了什么吗?
答案 0 :(得分:2)
我查看了该gem的源代码,如果您将模型更改为此,我认为它会起作用:
require 'money'
require 'money_column'
class Product < ActiveRecord::Base
include MoneyColumn
belongs_to :product_category
attr_accessible :sku, :name, :description, :price, :available, :product_category_id
money_column :price
end
另外,你确定你使用的是正确的宝石吗? official money_column gem on rubygems.org就是这个: https://github.com/chargify/money_column