Class: Money

Inherits:
Object
  • Object
show all
Defined in:
lib/gera/money_support.rb

Instance Method Summary collapse

Instance Method Details

#authorized_roundObject

TODO Отказаться Это сумма, до которой разрешено безопасное округление при приеме суммы от клиента



83
84
85
86
# File 'lib/gera/money_support.rb', line 83

def authorized_round
  return self unless currency.authorized_round.is_a? Numeric
  Money.from_amount to_f.round(currency.authorized_round), currency
end