compounding 0.1.1 → 0.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e68cedb85c6d49a01f653ed9b8cd121293812fdf30ed56b8a1635574503d9f05
4
- data.tar.gz: 1681fecc13fa072d8b1b87e33cc3461a323b0e389162e68dc7256cdeb4c7d914
3
+ metadata.gz: 61fe9d36e714f87123121230f1120f72d11de5e174d27b114c776bcdf3f55d4c
4
+ data.tar.gz: 7b89717de02a35c96613eabce4581036b570528f1a9607f15514ff4693536af8
5
5
  SHA512:
6
- metadata.gz: 7461991eaf13d334e97282515a0096e3955a21de8be4fbee28a9819e1c69e34e30416fa18c788d27dbe1872d5e0edcd34bb6100281e400b228a4d665ea87e2a5
7
- data.tar.gz: bbde25ae097c2e4c404124a3c1489947057e84b9133cc4413081a51d136686b673fa7edf99130ef79b79a3c1b749ee3d6c2422ae9f67083f8426e41fc38f4d14
6
+ metadata.gz: 6a76577e6f85bd6966f96bc0aa41f2c7d31adb2822228ed3c2044c25f5d9f596e5ad62e86990ebccf7f114521f330ba0d42bb4efe3d8ac5fc8be4da70a12238a
7
+ data.tar.gz: 8e7f8984fd6951e14242ffba720e3397025c6881b1cac60f36c096c6a3d14971bfce819d356764c7fa3046023d2303adc4d68d03ab6114785ecf086d99363570
@@ -1,10 +1,11 @@
1
1
  module Compounding
2
2
  class CalculationResult
3
- attr_reader :principal, :rate, :time, :compounding_frequency, :periods, :interest, :total
3
+ attr_reader :principal, :period_contribution, :rate, :time, :compounding_frequency, :periods, :interest, :total
4
4
 
5
5
  # time can be any unit of time, e.g. years, months, days, etc.
6
- def initialize(principal, rate, time, compounding_frequency)
6
+ def initialize(principal, period_contribution, rate, time, compounding_frequency)
7
7
  @principal = principal
8
+ @period_contribution = period_contribution
8
9
  @rate = rate
9
10
  @time = time
10
11
  @compounding_frequency = compounding_frequency
@@ -12,20 +13,31 @@ module Compounding
12
13
  end
13
14
 
14
15
  def calculate
15
- @interest = (1 + @rate / @compounding_frequency)**(@compounding_frequency * @time)
16
- @total = @principal + @interest
17
16
  populate_periods
17
+ calculate_interest
18
+ calculate_total
18
19
  end
19
20
 
20
21
  def populate_periods
21
22
  total_number_of_periods = @compounding_frequency * @time
22
23
  @periods = []
23
- previous_total = @principal
24
+ previous_total_full = @principal
25
+ total_full = @principal
24
26
 
25
27
  for n in 1..total_number_of_periods
26
- period_interest = previous_total * @rate / @compounding_frequency
27
- previous_total += period_interest
28
- @periods.push(DTO::Period.new(n, previous_total, period_interest, previous_total))
28
+ previous_total_full = total_full
29
+ previous_total = previous_total_full
30
+ previous_total = previous_total_full.round(2)
31
+
32
+ period_interest = previous_total_full * @rate / @compounding_frequency
33
+ total_full = previous_total_full + @period_contribution + period_interest
34
+ total = total_full.round(2)
35
+
36
+ @periods.push(DTO::Period.new(n, @period_contribution, previous_total_full, previous_total, period_interest,
37
+ total_full, total))
38
+
39
+ previous_total_full = total_full
40
+ previous_total = total
29
41
  end
30
42
 
31
43
  @periods
@@ -1,7 +1,7 @@
1
1
  module Compounding
2
2
  class Calculator
3
- def self.calculate(principal, rate, time, compounding_frequency)
4
- cr = CalculationResult.new(principal, rate, time, compounding_frequency)
3
+ def self.calculate(principal, period_contribution, rate, time, compounding_frequency)
4
+ cr = CalculationResult.new(principal, period_contribution, rate, time, compounding_frequency)
5
5
  cr.calculate
6
6
  cr
7
7
  end
@@ -1,12 +1,17 @@
1
1
  module Compounding
2
2
  module DTO
3
3
  class Period
4
- attr_reader :period_id, :previous_total, :interest, :total
4
+ # previous_total_full and total_full contain number that's not rounded
5
+ attr_reader :period_id, :period_contribution,
6
+ :previous_total_full, :previous_total, :interest, :total_full, :total
5
7
 
6
- def initialize(period_id, previous_total, interest, total)
8
+ def initialize(period_id, period_contribution, previous_total_full, previous_total, interest, total_full, total)
7
9
  @period_id = period_id
10
+ @period_contribution = period_contribution
11
+ @previous_total_full = previous_total_full
8
12
  @previous_total = previous_total
9
13
  @interest = interest
14
+ @total_full = total_full
10
15
  @total = total
11
16
  end
12
17
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Compounding
4
- VERSION = "0.1.1"
4
+ VERSION = "0.1.3"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: compounding
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jason Kim