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 Register exception handlers in your controllers
Description Allows you to register handlers for exceptions in your controllers like: class ApplicationController < ActionController::Base class NotAuthorized < RuntimeError;end register_exception NotAuthorized, :not_authorized private def not_authorized flash[ :error ] = 'You are not authorized to perform the requested ' + 'action.' render :text => '', :layout => true, :status => 401 end end In this example, you could raise an ApplicationController::NotAuthorized exception anywhere in the course of processing an action, and instead of just getting an error report or a 500 error in the browser, the user would see the page with your error message and the browser gets a 401 status code.
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