module Voom::Presenters::Helpers::Rails::Currency

Public Instance Methods

cents_to_currency(amount) click to toggle source
# File lib/voom/presenters/helpers/rails/currency.rb, line 8
def cents_to_currency(amount)
  number_to_currency(amount.to_f / 100)
end