Skip to content

Instantly share code, notes, and snippets.

@solars
Created March 24, 2011 15:28
Show Gist options
  • Save solars/885245 to your computer and use it in GitHub Desktop.
Save solars/885245 to your computer and use it in GitHub Desktop.
class Event < Ohm::Model
attribute :name
reference :venue, Venue
set :participants, Person
counter :votes
index :name
def validate
assert_present :name
end
end
class Venue < Ohm::Model
attribute :name
collection :events, Event
end
class Person < Ohm::Model
attribute :name
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment