Nick Kallen’s named_scope allows you to create readable, powerful class-specific finder scopes.
One thing that might bite new users is how it operates in the Class context. Specifically, Named Scopes created in a parent class, even those using the lambda syntax, are scoped to the parent class.
For example, we might have a generic SQL operation [...]