RubyGems Navigation menu

ScopedProxy 1.0.0

SYNOPSIS: Allows storing scopes as names; that way you can address subsets of your model space by meaningful names. require ‘scoped_proxy’ # Railsers: You might want to call this in environment.rb class User < ActiveRecord::Base scoped_proxy :role do |role| { :find => { :conditions => [‘role = ?’, role] } } end scoped_proxy :deleted, :find => { :conditions => ‘deleted_at is not null’ } end admins = User.role(‘admin’) admins.count # => 12 admins.find(:all) # => [ … ] User.deleted.count # => a number This implementation also brings (NEW, SHINY) default proxies. That means you can have a proxy in effect when no other proxy is in effect. class User < ActiveRecord::Base default_proxy :find => { :conditions => ‘deleted_at is null’ } end User.find(:all) # only finds users that aren’t deleted

Gemfile:
=

installieren:
=

Versionen:

  1. 1.0.0 - December 20, 2007* (9 KB)

Runtime Abhängigkeiten (1):

hoe >= 1.3.0

Besitzer:

Autoren:

  • Kaspar Schiess

SHA 256-Prüfsumme:

=

Downloads insgesamt 4.598

Für diese Version 4.597

Version veröffentlicht:

Lizenzen:

k.A.

Erforderliche Ruby-Version: None

Links: