Skip to content

Instantly share code, notes, and snippets.

@amangale
amangale / event.rb
Created May 11, 2011 19:27 — forked from stengland/event.rb
Multi Param Atrributes for MongoMapper
class Event
include MongoMapper::Document
plugin MultiParameterAttributes
key :name, String, :required => true
key :start_date, Date, :required => true
key :start_time, Time, :required => true
end