brandon (owner)

Revisions

gist: 223930 Download_button fork
public
Public Clone URL: git://gist.github.com/223930.git
Embed All Files: show embed
Ruby #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  class Address < DataMapper::Type
    include DataMapper::Resource
    property :address, String
    property :city, String
    property :state, String
    property :zip, Integer
  end
  
  class User
    include DataMapper::Resource
    property :id, DataMapper::Mongo::Types::ObjectID
    property :name, String
    property :address, Address
  end