Class: Numeric
- Inherits:
-
Object
- Object
- Numeric
- Defined in:
- lib/rujitsu/numeric.rb
Instance Method Summary collapse
-
#to_cents ⇒ Object
convert float values to “cents” my_value = 2.5 my_value.to_cents # => 250.
Instance Method Details
#to_cents ⇒ Object
convert float values to “cents”
my_value = 2.5
my_value.to_cents # => 250
5 6 7 |
# File 'lib/rujitsu/numeric.rb', line 5 def to_cents (self * 100.0).to_i end |