Module: Rawbotz::Helpers::FormatHelper

Defined in:
lib/rawbotz/helpers/format_helper.rb

Instance Method Summary collapse

Instance Method Details

#friendly_float(value) ⇒ Object

makes 1.7923 -> 1.79 200.00 -> 200



6
7
8
9
10
11
# File 'lib/rawbotz/helpers/format_helper.rb', line 6

def friendly_float value
  if value.nil?
    return nil
  end
  "%g" % ("%.2f" % value )
end