Indispensable Rails Plugins

Obie Fernandez's post about his most favored plugins prompted me to consider how much I use not only the Rails core framework, but also some excellent plugins that let me focus more on solving domain problems rather than technical ones. Below, the plugins I find indispensable in my work on Dibs.net.

Dibs.net relies on these great plugins, some hacked slightly to suit my needs. These plugins have saved me months of work and enabled far greater functionality to be built-in from the start.

  • acts_as_slugable - Easy way to create permalinks from a title, without numeric IDs.
  • acts_as_solr - Running Solr behind your ActiveRecord models gives you excellent "Google-like" searching. IMO, better than acts_as_ferret for many uses where you can handle the added architectural complexity (particularly, running a Java-based Solr server).
  • acts_as_state_machine - This is probably my favorite plugin. So good, I think it should be a part of ActiveRecord itself. If you have objects in "draft," "published" or "active" states you might want to check this out.
  • attachment_fu - If file uploads give you a severe headache, attachment_fu is like Advil.
  • betternestedset - Gives you higher performance selection methods like all_children. The API takes some getting used to and isn't suitable to replace existing solutions in all cases.
  • debug_view_helper - Adds a button to your page that pops up debugging info about the request, cookies, session and instance variables.
  • exception_notification - Sends a ticket to my support queue whenever a user experiences an error.
  • geokit - Andre Lewis and Bill Eisenhauer have done some amazing stuff here. Adds geo-intelligence (street address and IP geocoding) to ActiveRecords; also adds query-by-proximity, though I don't use that piece.
  • paginating_find - Another one that should be embedded into core ActiveRecord to replace the existing pagination that everyone recommends never to use.

Do you use any great plugins you think people would love?

Feedback and Article Ideas

Want to see a topic explored here? Send Me a Message.