== Usage
- Make you ActiveRecord model act as noteable.
class Model < ActiveRecord::Baseacts_as_noteableend
- Add a note to a model instance
model = Model.new note = Comment.new note.body = 'Some comment' model.notes << note
- Each note references a noteable object
model = Model.find(1) model.notes.get(0).noteable == model