Class: Bankroll::CumulativeInterest

Inherits:
Object
  • Object
show all
Extended by:
Callable, Dry::Initializer
Defined in:
lib/bankroll/cumulative_interest.rb

Instance Method Summary collapse

Instance Method Details

#callObject



15
16
17
18
# File 'lib/bankroll/cumulative_interest.rb', line 15

def call
  payments_made +
    ((total_interest - @payment) * percentage_of_interest_per_period)
end