Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Best way to add Disqus comments to a Rails application?

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).

like image 460
Tom Lehman Avatar asked Sep 28 '09 21:09

Tom Lehman


People also ask

What is Disqus commenting?

Disqus (/dɪsˈkʌs/) is an American blog comment hosting service for web sites and online communities that use a networked platform.


1 Answers

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.

like image 111
Tom Lehman Avatar answered Oct 21 '22 17:10

Tom Lehman