ActiveRecord::Base.include_root_in_json = true doesn\'t seem to be working in rails 3.10.rc4 and I don\'t see it in the docs.
ActiveRecord::Base.include_root_in_json = true
Since the root element is
Try setting this directly on your Comment model.
Comment
class Comment < ActiveRecord::Base self.include_root_in_json = true end