|
Project Information
Members
Featured
Wiki pages
|
== Usage
class Model < ActiveRecord::Baseacts_as_noteableend
model = Model.new note = Comment.new note.body = 'Some comment' model.notes << note
model = Model.find(1) model.notes.get(0).noteable == model |