I would like to use to_dollar method in my model like this:
to_dollar
module JobsHelper def to_dollar(amount) if amount < 0 number_to_cur
Helper methods are generally used for View files. It is not a good practice to use these methods in Model class. But if you want to use then Sam's answer is ok. OR I suggest you can write your own custom method.