Skip to content

Instantly share code, notes, and snippets.

@jeffkreeftmeijer
Created November 27, 2011 16:09
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jeffkreeftmeijer/1397738 to your computer and use it in GitHub Desktop.
Save jeffkreeftmeijer/1397738 to your computer and use it in GitHub Desktop.
Criteria
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
require 'mongo'
class User
def self.collection
@collection ||= Mongo::Connection.new['criteria']['users']
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment