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:
= Copier Copié!

installation:
=

Versions:

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

Dépendances de Runtime (1):

hoe >= 1.3.0

Propriétaires:

Auteurs:

  • Kaspar Schiess

Total de contrôle SHA 256:

bab771dcd35d1bdf65d54eab39c628cce3a23df5b1a4311d4965389a7d3c1dff

Total de téléchargements 4 456

Pour cette version 4 455

License:

aucune

Version de Ruby requise: None

Liens: