Steven
Steven

Reputation: 18014

Solution for comments for a Rails application

I'm introducing comments into a Rails application, and, being exceptionally lazy, I'm looking for a plugin to do it for me. I came across acts-as-commentable, but I didn't find much else. Acts-as-commentable seems fine, but it doesn't have support for threading.

Of course, it wouldn't be too hard just to home-brew the entire thing, but I think that surely commenting is such a common feature that there should be a canonical plugin to handle it. Can somebody with perhaps more Google Fu than me point me in the right direction?

Upvotes: 1

Views: 310

Answers (3)

Paulo Fidalgo
Paulo Fidalgo

Reputation: 22296

If you do not want to integrate a third-party service like Disqus, you have Juvia The Comments and Commontator. Also you can count with opinio as alternative. but only with Rails 3 and at the moment and as notice the development seems stalled.

Upvotes: 0

buru
buru

Reputation: 3210

The most lazy approach would be to use third-party commenting system like DISQUS : just copypaste a couple of javascripts and you're done.

Surely, it can't be used if your app has an authentication system of its own.

Upvotes: 0

krunal shah
krunal shah

Reputation: 16339

This is acts_as_commentable_with_threading plugin which help you for threaded comment. Link:: http://github.com/elight/acts_as_commentable_with_threading

Upvotes: 1

Related Questions