Solved.Aash Dhariya membantu menyelesaikan ini di grup google mongoid.
Saya memang mengubah reviews_controller.rb :
class ReviewsController < ApplicationController
def index
@product = Product.find(params[:product_id])
@reviews = @product.reviews
end
end
dan app/views/reviews/index.html.erb :
<h1>Reviews</h1>
<% @product = Product.find(params[:product_id]) %>
<table>
<tr>
<th>Content</th>
</tr>
<% @reviews.each do |review| %>
<tr>
<td><%= review.content %></td>
</tr>
<% end %>
</table>
<br />
Sekarang ini menampilkan ulasan di halaman terpisah! :)