[Rails] Re: Is a global set of named_scope scopes a bad idea? If not, is it possible?

2009-02-27 Thread Starr Horne
When you tried using a module, did you try it like this? ie. putting the calls to named_scope inside self.included ? module MyScopes def self.included(base) base.send :named_scope, ... params ... Another option might be to make a plugin with your named scopes in them. SH

[Rails] Re: Is a global set of named_scope scopes a bad idea? If not, is it possible?

2009-02-27 Thread ericindc
No, I didn't try that but that worked perfectly. Thanks for the tip. On Feb 27, 4:34 pm, Starr Horne st...@chatspring.com wrote: When you tried using a module, did you try it like this? ie. putting the calls to named_scope inside self.included ? module MyScopes   def self.included(base)