views:

11

answers:

2

What are the reasons putting a module in /helpers over the /lib folder in a RoR app?

Are /helpers more controller specific, while the /lib is more general in nature?

+1  A: 

I think this is a good question because the MVC notion makes us forget that it's all really just metaphors for us to organize code so we don't get too mixed up. If you need to do some simple formating go with a helper, otherwise probably a module in /lib.

Sam
A: 

Helpers are strictly for defining methods that you want available in your views. /lib modules can be used for anything and are available throughout the application.

Beerlington