Class: Float
- Inherits:
-
Object
- Object
- Float
- Defined in:
- lib/pratt/core_ext/float.rb
Instance Method Summary collapse
Instance Method Details
#percentage(of_total = 1) ⇒ Object
6 7 8 |
# File 'lib/pratt/core_ext/float.rb', line 6 def percentage of_total = 1 ( (self/of_total)*100.0 ).pretty_print << "%" end |
#pretty_print ⇒ Object
2 3 4 |
# File 'lib/pratt/core_ext/float.rb', line 2 def pretty_print "%0.2f"% self end |