forked from RubyMoney/money
-
Notifications
You must be signed in to change notification settings - Fork 0
Ruby on Rails (Money.gem 3.0.3 and later)
semmons99 edited this page Sep 12, 2010
·
14 revisions
Use the #composed_of
helper to let Active Record deal with embedding the money object in your models. The following example requires a cents
and a currency
field.
class ProductUnit < ActiveRecord::Base belongs_to :product composed_of :price, :class_name => "Money", :mapping => [%w(cents cents), %w(currency currency_as_string)], :constructor => Proc.new { |cents, currency| Money.new(cents || 0, currency || Money.default_currency) }
private validates_presence_of :currency end