Skip to content

Instantly share code, notes, and snippets.

@astrauka
Created January 11, 2013 06:45
Show Gist options
  • Save astrauka/4508504 to your computer and use it in GitHub Desktop.
Save astrauka/4508504 to your computer and use it in GitHub Desktop.
# Discovered a cool mongoid feature for autobuilding embedded or references relations:
class Person
include Mongoid::Document
embeds_one :name, autobuild: true
has_one :address, autobuild: true
end
> Person.new.name # returns a new name object, yey
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment