| Projects on Google Code | Results 1 - 1 of 1 |
== Usage
* Make you ActiveRecord model act as noteable.
class Model < ActiveRecord::Base
acts_as_noteable
end
* 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 obj...