Skip to content

Instantly share code, notes, and snippets.

@steveklabnik
Created July 16, 2012 15:12
Embed
What would you like to do?
class Foo < AR::Base
def self.ten_count
where(:count => 10)
end
def self.blue
where(:color => "blue")
end
end
Foo.ten_count.blue.all
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment