Method: Money#method_missing
- Defined in:
- lib/bd_money/bd_money.rb
#method_missing(meth, *args, &blk) ⇒ Object
226 227 228 229 230 231 232 233 |
# File 'lib/bd_money/bd_money.rb', line 226 def method_missing(meth, *args, &blk) if amount.respond_to? meth result = amount.send meth, *args, &blk result.is_a?(::BigDecimal) ? convert(result) : result else super end end |