Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save mangar/f12e3f016bbca847f285 to your computer and use it in GitHub Desktop.
Formatar numero (Rails) em valor monetário (R$)
def number_to_currency_br(number)
number_to_currency(number, :unit => "R$ ", :separator => ",", :delimiter => ".")
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment