Skip to content

Instantly share code, notes, and snippets.

@brianhempel
Created December 17, 2010 20:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brianhempel/745641 to your computer and use it in GitHub Desktop.
Save brianhempel/745641 to your computer and use it in GitHub Desktop.
class Person
include MongoMapper::Document
end
class Registree < Person
key :in_wels, Boolean
key :in_vienna, Boolean
end
class Visitor
QUERY = { "$or" => [{:in_wels => true}, {:in_vienna => true}] }
def new(*args)
r = Registree.new(*args)
r.in_wels = true
r.in_vienna = true # okay maybe you don't want them both true, but...
r
end
def find(*args)
Registree.where(QUERY).find(*args)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment