I\'m new to Rails and just wondering when I should put code into a Helper as opposed to putting the code into the Model.
Is there a \'rule of thumb\' so to speak for
Helpers should only contain logic for the view
Models should contain only logic related to the object modeled, never related with the transaction performed neither the view rendered