Skip to content

Instantly share code, notes, and snippets.

@jeffkreeftmeijer
Created November 27, 2011 16:09
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
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'
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