Created
May 24, 2012 15:03
-
-
Save jasiek/2782093 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 Post | |
| include Mongoid::Document | |
| include Mongoid::Timestamps | |
| identity :type => String | |
| field :title, :type => String | |
| field :body, :type => String | |
| end |
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 Mongoid::Identity | |
| Generator = Prime.instance.each | |
| def generate_id | |
| Generator.next | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment