Skip to content

Instantly share code, notes, and snippets.

@solnic
Forked from avdi/virtus-coercion.rb
Created May 11, 2012 22:00
Show Gist options
  • Save solnic/2662659 to your computer and use it in GitHub Desktop.
Save solnic/2662659 to your computer and use it in GitHub Desktop.
ValueObject in Virtus with a custom constructor
require 'virtus'
class Point
include Virtus::ValueObject
attribute :x, Integer
attribute :y, Integer
def initialize(value)
self.x = value[0]
self.y = value[1]
end
end
class Rectangle
include Virtus
attribute :top_left, Point
attribute :bottom_right, Point
end
rect = Rectangle.new(top_left: [3,5], bottom_right: [8,7])
puts rect.top_left.inspect # => #<Point x=3 y=5>
puts rect.bottom_right.inspect # => #<Point x=8 y=7>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment