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 Allows you to easily add scope to your models in your controller.
Description If you have a bunch of methods in your controller that should all have scoping applied to the model interactions, this is the plugin for you. Here's an example: class Account < ActiveRecord::Base has_many :pages end class Page < ActiveRecord::Base belongs_to :account end class PageController < ApplicationController before_filter :login_required around_filter ScopedAccess::Filter.new(Page, :mine) protected def mine { :find => { :conditions => ["user_id = ?", session[:user_id] }, :create => { :user_id => session[:user_id] } } end public def list @pages = Page.find(:all) end ... end So, all the Page find and update methods will be scoped with the ID of the currently logged-in user. This makes it incredibly easy to implement access controls in multiple-user applications. Check out the home page for more coolness this plugin provides.
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