Class: Float

Inherits:
Object
  • Object
show all
Defined in:
lib/retort/core_ext.rb

Instance Method Summary collapse

Instance Method Details

#fmtObject



25
26
27
# File 'lib/retort/core_ext.rb', line 25

def fmt
  "#{sprintf('%.2f', self)}"
end

#percentObject



21
22
23
# File 'lib/retort/core_ext.rb', line 21

def percent
  (self * 100).to_i
end