Class: String
- Inherits:
-
Object
- Object
- String
- Defined in:
- lib/money/core_extensions.rb
Overview
Allows Writing of ‘100’.to_money for String types Excess characters will be discarded
'100'.to_money => #<Money @cents=10000>
'100.37'.to_money => #<Money @cents=10037>
Instance Method Summary collapse
Instance Method Details
#to_money(currency = nil) ⇒ Object
15 16 17 |
# File 'lib/money/core_extensions.rb', line 15 def to_money(currency = nil) Money.parse(self, currency) end |