Skip to content
This repository has been archived by the owner on Nov 28, 2018. It is now read-only.

Latest commit

 

History

History
20 lines (12 loc) · 469 Bytes

README.rdoc

File metadata and controls

20 lines (12 loc) · 469 Bytes

Named Instances

Provides support for named instances in Rails.

Quick usage:

class Diagnosis < ActiveRecord::Base
  has_named_instances :name
end

Diagnosis.create :name => "Diabetes Mellitus"

>> Diagnosis.get(:diabetes_mellitus)
=> #<Diagnosis id: 52, name: "Diabetes Mellitus", created_at: "2009-10-07 15:41:50", updated_at: "2009-10-07 15:41:50">

Patches welcome, enjoy!

Copyright © 2009 - 2010 Jason Dew. See LICENSE for details.