compounding 0.1.1 → 0.1.2

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: bcdcbc2a6635072b9749bf2d768f328ad44817ba854daf675937520307ed4bfa
4
+ data.tar.gz: 3226df90b940f5697ed9adf2439656dbba20f4e89319397c0ddfbc3577fc3fe6
5
5
  SHA512:
6
- metadata.gz: 7461991eaf13d334e97282515a0096e3955a21de8be4fbee28a9819e1c69e34e30416fa18c788d27dbe1872d5e0edcd34bb6100281e400b228a4d665ea87e2a5
7
- data.tar.gz: bbde25ae097c2e4c404124a3c1489947057e84b9133cc4413081a51d136686b673fa7edf99130ef79b79a3c1b749ee3d6c2422ae9f67083f8426e41fc38f4d14
6
+ metadata.gz: 92585525fb5c9f71f257f925c517fbaa28dafcd0f65b650b95f83c78400c2536fdd02695ed68e6eba694c80c861fe50922a1486d3c410676587b9a7d6a4e80fa
7
+ data.tar.gz: 5ab2556a2cc9d5b9e39f5f15aa4b1a0630312401ecf84c66a510fe7974994230824302164a7fa87239e8bbad7aadafaf30ea47c86e3351320d4eca25a506ec26
@@ -20,12 +20,19 @@ module Compounding
20
20
  def populate_periods
21
21
  total_number_of_periods = @compounding_frequency * @time
22
22
  @periods = []
23
+ previous_total_full = @principal
23
24
  previous_total = @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
+ period_interest = previous_total_full * @rate / @compounding_frequency
29
+ total_full += period_interest
30
+ total = total_full.round(2)
31
+
32
+ @periods.push(DTO::Period.new(n, previous_total_full, previous_total, period_interest, total_full, total))
33
+
34
+ previous_total_full = total_full
35
+ previous_total = total
29
36
  end
30
37
 
31
38
  @periods
@@ -1,12 +1,15 @@
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, :previous_total_full, :previous_total, :interest, :total_full, :total
5
6
 
6
- def initialize(period_id, previous_total, interest, total)
7
+ def initialize(period_id, previous_total_full, previous_total, interest, total_full, total)
7
8
  @period_id = period_id
9
+ @previous_total_full = previous_total_full
8
10
  @previous_total = previous_total
9
11
  @interest = interest
12
+ @total_full = total_full
10
13
  @total = total
11
14
  end
12
15
  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.2"
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.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jason Kim