Skip to content

Instantly share code, notes, and snippets.

@pmoran
Created June 20, 2010 12:57
Show Gist options
  • Save pmoran/445817 to your computer and use it in GitHub Desktop.
Save pmoran/445817 to your computer and use it in GitHub Desktop.
class CompositeSpecification < Array
def all
self.inject(Product.scoped(nil)) do |combined_scope, specification|
combined_scope.scoped(specification.criteria)
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment