Ever thought of organizing your code in more than one files , rather writing all in one place.
Sometime, you want a method accessible to all your controller. Solutions to this is:
1) ApplicationController
2)Copy the same methods in each controller specific helper file i.e REPEAT YOURSELF, which go against the rails philosophy of DRY( Do Not Repeat Yourself)
3) Custom Helpers