Create a new RoR application with two models: Blog and Comment. Blog should have two string properties: title and body. Comment has one string property: body. A Comment belongs to a Blog.
The route /blog/:id should show the title and body properties of the blog. Below the body of the blog, add a link that says "Show Comments". When this link is clicked, load and display the comments for the blog via AJAX.