Module ApplicationHelper
In: app/helpers/application_helper.rb

Global helper methods for views.

Methods

Public Instance methods

Format a float as $123.45

[Source]

   # File app/helpers/application_helper.rb, line 5
5:   def fmt_dollars(amt)
6:     sprintf("$%0.2f", amt)
7:   end

[Validate]