Skip to content

Instantly share code, notes, and snippets.

@wiecklabs
wiecklabs / gist:186777
Created September 14, 2009 17:11 — forked from fgrehm/gist:184843
class Address # Our custom, embedded-value type
orm.map_type do |signature, types|
signature.from [self]
signature.typecast_left method(:__load__)
signature.to [types.string, types.string, types.string, types.string, types.string]
signature.typecast_right method(:__dump__)
end
end
class Zoo