views:

1101

answers:

11
+14  Q: 

Rails Plugins

What are some of your favorite rails plugins that you would consider "must haves"?

This entry lists some of my favorites that I use in a large majority of my rails applications: My favorite rails plugins

+2  A: 

If your app has any kind of user model, Rick Olsen's restful-authentication is a must.

I'm also partial to exception_notification for keeping tabs on errors in production apps.

Gordon Wilson
A: 

acts_as_taggable shoulda (gem, but better unit testing)

Kevin Davis
I am pretty sure you can get shoulda as a regular plugin as well, I have done that in the past.
Derek P.
@Derek, I'm not sure the plugin version is still being maintained. See http://giantrobots.thoughtbot.com/2008/9/30/shoulda-2-0.
Zach Langley
+7  A: 

I use all of these in 99% of all of my Rails projects. Each link provides detailed information regarding what they do and why they are awesome.

Hope that helped!

Derek P.
Definitely a big fan of Acts as State Machine
thetacom
A: 

Normal App Development

  • RESTFul authentication
  • shoulda
  • I prefer Hoptoad over Exception Notifier, but both have their merits
  • Mocha stubbing library
  • Factory Girl

Facebook Development

  • facebooker
  • facebooker_authentication
Collin
+3  A: 

Gem or plugin, doesn't matter:

Ryan McGeary
+2  A: 

HAML (and its sibling SASS) are really number one for me. You can learn them in only a few minutes and the time they save adds up very quickly.

Also, take a look at Authlogic as an alternative to RESTful Authentication.

Milo
+2  A: 

most common i've used across projects lately (by no means all just most common)

rrichards
A: 

Some already listed in other answers that don't need repeating plus:

  • acts_as_categoy
  • paperclip
  • open_id_authentication
  • ZenTest gem
allesklar
A: 

ar_mailer for email delivery.

htanata