Skip to content

Instantly share code, notes, and snippets.

@mangar
Created December 31, 2015 14:50
Show Gist options
  • Select an option

  • Save mangar/b73711cb9506965a8cda to your computer and use it in GitHub Desktop.

Select an option

Save mangar/b73711cb9506965a8cda to your computer and use it in GitHub Desktop.
Formatar numero (Rails) em valor monetário (R$) ... dentro de um controller, por exemplo
def formatar_valor_BRL(valor)
ActionController::Base.helpers.number_to_currency(valor, :unit => "R$ ", :separator => ",", :delimiter => ".")
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment