Plugins we're using
I thought it might be nice to share what plugins we’re using in some of our apps:
- action_mailer_layouts
Adds some handy functionality allowing ActionMailer to use layouts just like any other view. I was surprised this doesn’t come out of the box with Rails but this plugin handles it nicely. Makes mailings dry when you want to have layouts that wrap around multiple emails. - acts_as_state_machine
Interesting little tool that allows you to define various states (aka statuses) and define various events that transition ActiveRecord objects from one state to another. It’s handy to help organize items that have many states. - human_attribute_override
Handy when you have columns with legacy naming conventions (or lack of conventions) or even when you change the name of a column but don’t feel like actually changing the name in the database. Things like validation errors use the human_name of a column to make it friendly looking and this allows you to set it to whatever you want. - acts_as_ferret
Full text index searching of AR items. Works great and easy to implement! - betternestedset
This is an improved version of the nested set functionality that comes with Rails. We actually ended up not using this but still have it installed on the project. I don’t remember why we didn’t use it… I think because acts_as_tree sufficed just fine for our needs. - fckeditor
A decent HTML editor that’s open source and nicely customizable. - geokit
We use this to detect the country of origin of a visitor via IP address and direct them to a country specific version of their site. - ssl_requirement
Handy tool that allows you to set specific actions on specific controllers as either requiring or not allowing SSL. Really helps you cut down on server load by not allowing HTTPS on pages that really don’t need it. - to_csv
Takes a collection of AR objects and spits it out into a line of comma delimited text with one simple method call. - redcloth
Adds textile lightweight markup capability. I simply adore textile. - sparklines
Geoff Grosenbach’s handy little plugin that makes really neat little graphs. Graphs without keys or even numbers but just enough info to give you context for a chunk of data.
Trackbacks
Use the following link to trackback from your own site:
http://blog.kineticweb.com/articles/trackback/39
