Verfallswarnung zum Anlegen des Attributs 'Währung'

Ich verwende Rails 3.2.3 mit dem Money-Rails-Gem und habe ein Produktmodell mit den folgenden Eigenschaften:

Mein Modell

class Product < ActiveRecord::Base
  attr_accessible :name, :price

  composed_of :price,
  :class_name => "Money",
  :mapping => [%w(price_cents cents), %w(currency currency_as_string)],
  :constructor => Proc.new { |cents, currency| Money.new(cents || 0, currency || Money.default_currency) },
  :converter => Proc.new { |value| value.respond_to?(:to_money) ? value.to_money : raise(ArgumentError, "Can't convert #{value.class} to Money") }


end

Mein Test

require 'spec_helper'

describe Product do
  context "testing money gem" do
    it "creates product with price" do
      product = Product.create(:price => 200)
      product.price.should eq(200)
      product.price_cents.should eq(20000)
    end
  end
end

Ablehnungswarnung bekomme ich.

% rspec spec/models/product_spec.rb

Product
  testing money gem
DEPRECATION WARNING: You're trying to create an attribute `currency'. Writing arbitrary attributes on a model is deprecated. Please just use `attr_writer` etc. (called from block (3 levels) in <top (required)> at /home/map7/project/spec/models/product_spec.rb:6)
    creates product with price

Finished in 0.06682 seconds
1 example, 0 failures

Wie behebe ich diese Ablehnungswarnung?

Aktualisieren

Wenn ich der Tabelle 'Währung' hinzufüge, funktioniert es. Sollte ich das trotzdem tun müssen?

Antworten auf die Frage(2)

Ihre Antwort auf die Frage