Created
November 27, 2011 16:09
-
-
Save jeffkreeftmeijer/1397738 to your computer and use it in GitHub Desktop.
Criteria
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Criteria | |
def criteria | |
@criteria ||= {:conditions => {}} | |
end | |
def where(args) | |
criteria[:conditions].merge!(args) | |
self | |
end | |
def limit(limit) | |
criteria[:limit] = limit | |
self | |
end | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'mongo' | |
require File.expand_path 'criteria' | |
class User | |
def self.collection | |
@collection ||= Mongo::Connection.new['criteria']['users'] | |
end | |
def self.limit(*args) | |
Criteria.new.limit(*args) | |
end | |
def self.where(*args) | |
Criteria.new.where(*args) | |
end | |
end | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment