Skip to content

Instantly share code, notes, and snippets.

@matheusca
Created March 21, 2011 22:09
Show Gist options
  • Save matheusca/880333 to your computer and use it in GitHub Desktop.
Save matheusca/880333 to your computer and use it in GitHub Desktop.
ree-1.8.7-2011.03 :003 > Post.create!(:title => 'teste', :description => 'teste')
=> #<Post _id: 4d87cb65fe1599058e000001, slug: "teste", by: nil, title: "teste", description: "teste", tags_array: nil>
ree-1.8.7-2011.03 :004 > post = Post.first
=> #<Post _id: 4d87cb65fe1599058e000001, slug: "teste", by: nil, title: "teste", description: "teste", tags_array: nil>
ree-1.8.7-2011.03 :005 > post.comments
=> []
ree-1.8.7-2011.03 :006 > post.comments.new(:name => 'tste', :description => 'teste', :email => 'teste@teste.com.br')
=> #<Comment _id: 4d87cb89fe1599058e000002, name: "tste", post_id: nil, description: "teste", status: nil, spam: nil, email: "teste@teste.com.br">
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment