This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
Home
HasDetails allows you to store a large amount of (optional) attributes for any model’s instance in a serialized column.
It takes care of adding convenience methods to your model, and verifies that the value being assigned is indeed (one of)
the type(s) required for that attribute.
Example
class User << ActiveRecord::Base
has_details :firstname => String,
:lastname => String,
:birthday => Date,
:gender => [:male, :female]
end
john = User.find(1)
john.birthday = 5.years.ago
john.gender
=> :male
Copyright
Copyright © 2008 Marten Veldthuis, released under the MIT license







