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 Couple of useful little methods to clear up your restfull controllers.
Description RestResponses is a couple of useful little methods to clear up your restfull controllers, turning something like this: def update @user = User.find(params[:id]) @user.update_attributes!(params[:user]) respond_to do |wants| wants.html { } wants.xml { render :xml => @user.to_xml(:except => :hashed_password) } end rescue ActiveRecord::RecordNotFound render :nothing => true, :status => 404 rescue ActiveRecord::InvalidRecord respond_to do |wants| wants.html { } wants.xml { render :xml => @user.errors.to_xml } end end To this: before_filter :find_user def update @user.update_attributes!(params[:user]) responds @user end To install: ruby script/plugin install http://rest-responses.googlecode.com/svn/trunk/rest_responses
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