Skip to content

Instantly share code, notes, and snippets.

@karuna
Created March 31, 2010 02:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save karuna/349863 to your computer and use it in GitHub Desktop.
Save karuna/349863 to your computer and use it in GitHub Desktop.
#app/helpers/application_helper.rb
module ApplicationHelper
def money_format money
number_to_currency(money.to_f, :unit => "£", :separator => ",", :delimiter => "", :precision => 2)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment