Class Numeric
In: lib/money/core_extensions.rb
Parent: Object

Allows Writing of 100.to_money for Numeric types

  100.to_money => #<Money @cents=10000>
  100.37.to_money => #<Money @cents=10037>

Methods

to_money  

Public Instance methods

[Source]

   # File lib/money/core_extensions.rb, line 5
5:   def to_money
6:     Money.new(self * 100)
7:   end

[Validate]