Is your plugin hosted on GitHub? Make sure to press the "fetch" button next to the repository field to fetch your plugin's info from GitHub rather than typing it all in.
Repository
Name
Home Page
Short description Add notes to multiple AR models
Description Allows for notes to be added to multiple and different models. == Resources Install * Run the following command: script/plugin install http://acts-as-noteable.googlecode.com/svn/trunk/acts_as_noteable/ * Create a new rails migration and add the following self.up and self.down methods def self.up create_table "notes", :force => true do |t| t.column "from", :string, :limit => 50, :default => "" t.column "body", :text, :default => "" t.column "created_at", :datetime, :null => false t.column "noteable_id", :integer, :default => 0, :null => false t.column "noteable_type", :string, :limit => 15, :default => "", :null => false end end def self.down drop_table :notes end == 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 object model = Model.find(1) model.notes.get(0).noteable == model == Credits Jake V - This plugin is heavily influenced by Acts As Commentable (by Juixe). == More http://blog.djdossiers.com/articles/2007/05/09/another-new-rails-plugin-acts-as-noteable
Description format RDoc MarkDown Textile
License Ruby's Rails' (MIT) GPL LGPL BSD Apache Artistic PublicDomain BSD-type Free-Trial Free-but-Restricted OpenSource Proprietary Shareware Source-available-proprietary Commercial
Category Assets Controllers Internationalization Misc. Enhancements Model Rails Engines Searching and Queries Security Statistics and Logs Testing View Extensions