Skip to content

Instantly share code, notes, and snippets.

@mlangenberg
Created November 10, 2011 21:56
Show Gist options
  • Select an option

  • Save mlangenberg/1356375 to your computer and use it in GitHub Desktop.

Select an option

Save mlangenberg/1356375 to your computer and use it in GitHub Desktop.
@post = Post.first
@post.comments.size #=> 2
@post.comments.new
@post.comments.size #=> 3
@post.comments.last.new_record? #=> true
@mlangenberg
Copy link
Author

@post = Post.first
@post.comments.size #=> 2
comment = @post.comments.new
@post.comments.size #=> 3
comment.save
@post.comments.size #=> 4
@post.comments.last.new_record? #=> true

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment