Skip to content

Instantly share code, notes, and snippets.

@theCrab
Created February 19, 2013 15:38
Show Gist options
  • Select an option

  • Save theCrab/4986931 to your computer and use it in GitHub Desktop.

Select an option

Save theCrab/4986931 to your computer and use it in GitHub Desktop.
Decipher this
class Property
include DataMapper::Resource
property :id, Serial
property :name, String, required: true
property :price, Integer, required: true
property :description, Text
has 1, :address
has n, :rooms
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment