Вы можете попытаться использовать: с помощью оператора:
class Comment
belongs_to :user
has_many :statuses, :through => :user
end
class Status
belongs_to :user
has_many :comments, :through => :user
end
И запрос:
@user = User.first.includes(:comments, :statuses)
или
@comment = Comment.first.includes(:user, :statuses)
или
@statuse = Status.first.includes(:user, :comments)