Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 8th, 2012  |  syntax: None  |  size: 0.22 KB  |  hits: 5  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. class User
  2.   include MongoMapper::Document
  3.   safe
  4.  
  5.   mount_uploader :photo, PhotoUploader
  6.  
  7.   key :user_id,                   Integer
  8.   key :first_name,                String
  9.   key :last_name,                 String
  10.   ....
  11. end