compounding 0.1.0 → 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 +4 -4
- data/lib/compounding/calculation_result.rb +10 -3
- data/lib/compounding/calculator.rb +1 -1
- data/lib/compounding/dto/period.rb +5 -2
- data/lib/compounding/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bcdcbc2a6635072b9749bf2d768f328ad44817ba854daf675937520307ed4bfa
|
4
|
+
data.tar.gz: 3226df90b940f5697ed9adf2439656dbba20f4e89319397c0ddfbc3577fc3fe6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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 =
|
27
|
-
|
28
|
-
|
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
|
-
|
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
|
data/lib/compounding/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: compounding
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jason Kim
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-02-
|
11
|
+
date: 2025-02-27 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Calculate compound interest
|
14
14
|
email:
|