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 Filter let you specify common filtering options, in order to generate a filtered condition, useful for filtering from request params.
Description Filter let you specify common filtering options, in order to generate a filtered condition, useful for filtering from request params. Example usage: filter = Filter.new filter.multiple types, :type_id people = People.find(:all, :conditions => filter.conditions) Generates: SELECT * FROM people WHERE (type_id IN (1,2)) filter.equal type, :type_id Generates: SELECT * FROM people WHERE (type_id = 1) Is very beautifull when you whant to add multiple conditions if other (conditions) are verified like: conditions = Filter.new conditions.great params[:type][:id], :type_id unless params[:type][:id].blank? conditions.equal params[:model][:id], :model_id unless params[:model][:id].blank? MyModel.find(:all, :conditions => conditions) Code originally created by Divoxx who I give my special Thanks Code edited by http://blog.lipsiasoft.com
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