Skip to content

Instantly share code, notes, and snippets.

@solnic
Last active August 29, 2015 14:11
Show Gist options
  • Select an option

  • Save solnic/7a39670e0206e6d9d731 to your computer and use it in GitHub Desktop.

Select an option

Save solnic/7a39670e0206e6d9d731 to your computer and use it in GitHub Desktop.
Virtus Money EV Example
require 'virtus'
class Money
include Virtus.value_object
values do
attribute :amount, Integer
attribute :currency, String
end
end
class Product
include Virtus.model
attribute :price, Money
end
product = Product.new(price: { amount: 100, currency: 'USD' })
puts product.inspect
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment