Created
December 13, 2009 19:51
-
-
Save neaf/255575 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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