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 Active Record extension that logs all revisions in an audits table, allowing changes to be reverted.
Description = acts_as_audited acts_as_audited is an ActiveRecord extension that logs all changes to your models in an audits table. == Auditing in Rails If you're using acts_as_audited within Rails, you can simply declare which models should be audited. acts_as_audited can also automatically record the user that made the change if your controller has a current_user method. class ApplicationController < ActionController::Base audit User, List, Item protected def current_user @user ||= User.find(session[:user]) end end == Customizing To get auditing outside of Rails, or to customize which fields are audited within Rails, you can explicitly declare acts_as_audited on your models: class User < ActiveRecord::Base acts_as_audited :except => [:password, :mistress] end See http://opensoul.org/2006/07/21/acts_as_audited for more information.
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