Created
February 10, 2011 21:36
-
-
Save phorsfall/821394 to your computer and use it in GitHub Desktop.
Hmmph, Mongoid
This file contains 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
e = Event.new | |
=> #<Event _id: 4d545395223e17aeca000004> | |
"ZOMG!!!" if e.creator | |
=> nil | |
e.creator.object_id | |
=> 4 | |
e.creator = nil | |
=> nil | |
"ZOMG!!!" if e.creator | |
=> "ZOMG!!!" | |
e.creator.object_id | |
=> 2158412140 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment