ruby-on-rails – 使用money_column gem和rails

我是一个rails noob …使用Rails 3.1

我正在尝试使用money_column gem.我安装了gem,添加到我的gemfile,bundle install.我设置了一个类似于示例的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时遗漏了什么吗?

最佳答案 我查看了该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

点赞