Skip to content

Instantly share code, notes, and snippets.

@neaf
Created December 13, 2009 19:51
Show Gist options
  • Select an option

  • Save neaf/255575 to your computer and use it in GitHub Desktop.

Select an option

Save neaf/255575 to your computer and use it in GitHub Desktop.
class Project
include MongoMapper::Document
key :name, String
key :budget, Integer
key :type, String
key :details
end
class DesignProject
include MongoMapper::EmbeddedDocument
key :page_count, Integer
end
class MarkupProject
include MongoMapper::EmbeddedDocument
key :with_microformats, Boolean
end
class ApplicationProject
include MongoMapper::EmbeddedDocument
key :framework, String
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment