views:

586

answers:

3

Is there anything better than the Disqus Ruby Gem? Perhaps something geared specifically towards Rails?

(The Disqus gem might be the best option, I just haven't been able to find much color one way or the other).

+1  A: 

You can always just sign up for an account for your site and stick their generic javascript into your page where you want it:

http://disqus.com/comments/universal/

Shane Liebling
+1  A: 

I looked into this myself. There's a couple of Ruby gems, but Norman's disqus gem that you listed was the only one I could find with Rails helpers.

Delameko
+4  A: 

The Ruby gem's helper just embeds Disqus' native Javascript, which is bad because it loads the Disqus comments synchronously.

Rather than make users wait, I did some hacking and got the comments to load asynchronously. Check out my blog post on the subject.

Horace Loeb