singapore_cpf_calculator 1.3.4 → 1.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/build.yml +33 -0
- data/Gemfile +1 -0
- data/README.md +1 -0
- data/lib/singapore_cpf_calculator/age_group.rb +27 -5
- data/lib/singapore_cpf_calculator/base_calculator.rb +14 -2
- data/lib/singapore_cpf_calculator/requirements/group_above_65_to_70_years.rb +13 -0
- data/lib/singapore_cpf_calculator/requirements/group_above_70_years.rb +13 -0
- data/lib/singapore_cpf_calculator/requirements.rb +3 -0
- data/lib/singapore_cpf_calculator/residency_module_common.rb +5 -1
- data/lib/singapore_cpf_calculator/version.rb +1 -1
- data/lib/singapore_cpf_calculator/year_2016.rb +2 -2
- data/lib/singapore_cpf_calculator/year_2022/citizen_or_spr_3/age_55_below_contribution_calculator.rb +8 -0
- data/lib/singapore_cpf_calculator/year_2022/citizen_or_spr_3/age_55_to_60_contribution_calculator.rb +32 -0
- data/lib/singapore_cpf_calculator/year_2022/citizen_or_spr_3/age_60_to_65_contribution_calculator.rb +32 -0
- data/lib/singapore_cpf_calculator/year_2022/citizen_or_spr_3/age_65_to_70_contribution_calculator.rb +32 -0
- data/lib/singapore_cpf_calculator/year_2022/citizen_or_spr_3/age_70_up_contribution_calculator.rb +32 -0
- data/lib/singapore_cpf_calculator/year_2022/citizen_or_spr_3/citizen_or_spr3_base.rb +9 -0
- data/lib/singapore_cpf_calculator/year_2022/citizen_or_spr_3.rb +40 -0
- data/lib/singapore_cpf_calculator/year_2022/spr_1_fg/age_55_below_contribution_calculator.rb +11 -0
- data/lib/singapore_cpf_calculator/year_2022/spr_1_fg/age_55_to_60_contribution_calculator.rb +32 -0
- data/lib/singapore_cpf_calculator/year_2022/spr_1_fg/age_60_to_65_contribution_calculator.rb +32 -0
- data/lib/singapore_cpf_calculator/year_2022/spr_1_fg/age_65_to_70_contribution_calculator.rb +32 -0
- data/lib/singapore_cpf_calculator/year_2022/spr_1_fg/age_70_up_contribution_calculator.rb +32 -0
- data/lib/singapore_cpf_calculator/year_2022/spr_1_fg.rb +40 -0
- data/lib/singapore_cpf_calculator/year_2022/spr_1_gg/age_55_below_contribution_calculator.rb +11 -0
- data/lib/singapore_cpf_calculator/year_2022/spr_1_gg/age_55_to_60_contribution_calculator.rb +12 -0
- data/lib/singapore_cpf_calculator/year_2022/spr_1_gg/age_60_to_65_contribution_calculator.rb +11 -0
- data/lib/singapore_cpf_calculator/year_2022/spr_1_gg/age_65_up_contribution_calculator.rb +14 -0
- data/lib/singapore_cpf_calculator/year_2022/spr_1_gg.rb +34 -0
- data/lib/singapore_cpf_calculator/year_2022/spr_2_fg/age_55_below_contribution_calculator.rb +11 -0
- data/lib/singapore_cpf_calculator/year_2022/spr_2_fg/age_55_to_60_contribution_calculator.rb +32 -0
- data/lib/singapore_cpf_calculator/year_2022/spr_2_fg/age_60_to_65_contribution_calculator.rb +32 -0
- data/lib/singapore_cpf_calculator/year_2022/spr_2_fg/age_65_to_70_contribution_calculator.rb +32 -0
- data/lib/singapore_cpf_calculator/year_2022/spr_2_fg/age_70_up_contribution_calculator.rb +32 -0
- data/lib/singapore_cpf_calculator/year_2022/spr_2_fg.rb +40 -0
- data/lib/singapore_cpf_calculator/year_2022/spr_2_gg/age_55_below_contribution_calculator.rb +11 -0
- data/lib/singapore_cpf_calculator/year_2022/spr_2_gg/age_55_to_60_contribution_calculator.rb +11 -0
- data/lib/singapore_cpf_calculator/year_2022/spr_2_gg/age_60_to_65_contribution_calculator.rb +11 -0
- data/lib/singapore_cpf_calculator/year_2022/spr_2_gg/age_65_up_contribution_calculator.rb +11 -0
- data/lib/singapore_cpf_calculator/year_2022/spr_2_gg.rb +34 -0
- data/lib/singapore_cpf_calculator/year_2022.rb +35 -0
- data/lib/singapore_cpf_calculator.rb +9 -1
- data/singapore_cpf_calculator.gemspec +2 -2
- data/spec/singapore_cpf_calculator/age_group_spec.rb +15 -3
- data/spec/singapore_cpf_calculator/year_2016/citizen_or_spr_3/age_55_to_60_contribution_calculator_spec.rb +1 -1
- data/spec/singapore_cpf_calculator/year_2016/citizen_or_spr_3/age_60_to_65_contribution_calculator_spec.rb +2 -2
- data/spec/singapore_cpf_calculator/year_2016/citizen_or_spr_3_spec.rb +3 -3
- data/spec/singapore_cpf_calculator/year_2016/spr_1_fg/age_55_to_60_contribution_calculator_spec.rb +1 -1
- data/spec/singapore_cpf_calculator/year_2016/spr_1_fg/age_60_to_65_contribution_calculator_spec.rb +1 -1
- data/spec/singapore_cpf_calculator/year_2016/spr_2_fg/age_60_to_65_contribution_calculator_spec.rb +1 -1
- data/spec/singapore_cpf_calculator/year_2022/citizen_or_spr_3/age_55_below_contribution_calculator_spec.rb +63 -0
- data/spec/singapore_cpf_calculator/year_2022/citizen_or_spr_3/age_55_to_60_contribution_calculator_spec.rb +63 -0
- data/spec/singapore_cpf_calculator/year_2022/citizen_or_spr_3/age_60_to_65_contribution_calculator_spec.rb +63 -0
- data/spec/singapore_cpf_calculator/year_2022/citizen_or_spr_3/age_65_to_70_contribution_calculator_spec.rb +63 -0
- data/spec/singapore_cpf_calculator/year_2022/citizen_or_spr_3/age_70_up_contribution_spec.rb +63 -0
- data/spec/singapore_cpf_calculator/year_2022/citizen_or_spr_3_spec.rb +242 -0
- data/spec/singapore_cpf_calculator/year_2022/spr_1_fg/age_55_below_contribution_calculator_spec.rb +63 -0
- data/spec/singapore_cpf_calculator/year_2022/spr_1_fg/age_55_to_60_contribution_calculator_spec.rb +63 -0
- data/spec/singapore_cpf_calculator/year_2022/spr_1_fg/age_60_to_65_contribution_calculator_spec.rb +63 -0
- data/spec/singapore_cpf_calculator/year_2022/spr_1_fg/age_65_to_70_contribution_calculator_spec.rb +63 -0
- data/spec/singapore_cpf_calculator/year_2022/spr_1_fg/age_70_up_contribution_calculator_spec.rb +63 -0
- data/spec/singapore_cpf_calculator/year_2022/spr_1_fg_spec.rb +176 -0
- data/spec/singapore_cpf_calculator/year_2022/spr_1_gg/age_55_below_contribution_calculator_spec.rb +63 -0
- data/spec/singapore_cpf_calculator/year_2022/spr_1_gg/age_55_to_60_contribution_calculator_spec.rb +63 -0
- data/spec/singapore_cpf_calculator/year_2022/spr_1_gg/age_60_to_65_contribution_calculator_spec.rb +63 -0
- data/spec/singapore_cpf_calculator/year_2022/spr_1_gg/age_65_up_contribution_calculator_spec.rb +63 -0
- data/spec/singapore_cpf_calculator/year_2022/spr_1_gg_spec.rb +158 -0
- data/spec/singapore_cpf_calculator/year_2022/spr_2_fg/age_55_below_contribution_calculator_spec.rb +63 -0
- data/spec/singapore_cpf_calculator/year_2022/spr_2_fg/age_55_to_60_contribution_calculator_spec.rb +63 -0
- data/spec/singapore_cpf_calculator/year_2022/spr_2_fg/age_60_to_65_contribution_calculator_spec.rb +63 -0
- data/spec/singapore_cpf_calculator/year_2022/spr_2_fg/age_65_to_70_contribution_calculator_spec.rb +63 -0
- data/spec/singapore_cpf_calculator/year_2022/spr_2_fg/age_70_up_contribution_calculator_spec.rb +63 -0
- data/spec/singapore_cpf_calculator/year_2022/spr_2_fg_spec.rb +176 -0
- data/spec/singapore_cpf_calculator/year_2022/spr_2_gg/age_55_below_contribution_calculator_spec.rb +63 -0
- data/spec/singapore_cpf_calculator/year_2022/spr_2_gg/age_55_to_60_contribution_calculator_spec.rb +63 -0
- data/spec/singapore_cpf_calculator/year_2022/spr_2_gg/age_60_to_65_contribution_calculator_spec.rb +63 -0
- data/spec/singapore_cpf_calculator/year_2022/spr_2_gg/age_65_up_contribution_calculator_spec.rb +63 -0
- data/spec/singapore_cpf_calculator/year_2022/spr_2_gg_spec.rb +158 -0
- data/spec/singapore_cpf_calculator/year_2022_spec.rb +192 -0
- data/spec/singapore_cpf_calculator_spec.rb +57 -20
- data/spec/spec_helper.rb +6 -1
- metadata +97 -5
- data/.travis.yml +0 -15
metadata
CHANGED
@@ -1,14 +1,16 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: singapore_cpf_calculator
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ronald Maravilla
|
8
|
+
- Mathieu Jobin
|
9
|
+
- Pete Henchaw
|
8
10
|
autorequire:
|
9
11
|
bindir: bin
|
10
12
|
cert_chain: []
|
11
|
-
date:
|
13
|
+
date: 2022-03-15 00:00:00.000000000 Z
|
12
14
|
dependencies:
|
13
15
|
- !ruby/object:Gem::Dependency
|
14
16
|
name: bundler
|
@@ -68,14 +70,14 @@ dependencies:
|
|
68
70
|
version: '0'
|
69
71
|
description: A Singapore's Central Provident Fund (CPF) contributions calculator.
|
70
72
|
email:
|
71
|
-
-
|
73
|
+
- support@payrollhero.com
|
72
74
|
executables: []
|
73
75
|
extensions: []
|
74
76
|
extra_rdoc_files: []
|
75
77
|
files:
|
78
|
+
- ".github/workflows/build.yml"
|
76
79
|
- ".gitignore"
|
77
80
|
- ".rspec"
|
78
|
-
- ".travis.yml"
|
79
81
|
- Gemfile
|
80
82
|
- LICENSE.txt
|
81
83
|
- README.md
|
@@ -93,7 +95,9 @@ files:
|
|
93
95
|
- lib/singapore_cpf_calculator/requirements/group_above_50_to_55_years.rb
|
94
96
|
- lib/singapore_cpf_calculator/requirements/group_above_55_to_60_years.rb
|
95
97
|
- lib/singapore_cpf_calculator/requirements/group_above_60_to_65_years.rb
|
98
|
+
- lib/singapore_cpf_calculator/requirements/group_above_65_to_70_years.rb
|
96
99
|
- lib/singapore_cpf_calculator/requirements/group_above_65_years.rb
|
100
|
+
- lib/singapore_cpf_calculator/requirements/group_above_70_years.rb
|
97
101
|
- lib/singapore_cpf_calculator/residency_module_common.rb
|
98
102
|
- lib/singapore_cpf_calculator/spr_1_fg_common.rb
|
99
103
|
- lib/singapore_cpf_calculator/spr_1_gg_common.rb
|
@@ -196,6 +200,36 @@ files:
|
|
196
200
|
- lib/singapore_cpf_calculator/year_2016/spr_2_gg/age_55_to_60_contribution_calculator.rb
|
197
201
|
- lib/singapore_cpf_calculator/year_2016/spr_2_gg/age_60_to_65_contribution_calculator.rb
|
198
202
|
- lib/singapore_cpf_calculator/year_2016/spr_2_gg/age_65_up_contribution_calculator.rb
|
203
|
+
- lib/singapore_cpf_calculator/year_2022.rb
|
204
|
+
- lib/singapore_cpf_calculator/year_2022/citizen_or_spr_3.rb
|
205
|
+
- lib/singapore_cpf_calculator/year_2022/citizen_or_spr_3/age_55_below_contribution_calculator.rb
|
206
|
+
- lib/singapore_cpf_calculator/year_2022/citizen_or_spr_3/age_55_to_60_contribution_calculator.rb
|
207
|
+
- lib/singapore_cpf_calculator/year_2022/citizen_or_spr_3/age_60_to_65_contribution_calculator.rb
|
208
|
+
- lib/singapore_cpf_calculator/year_2022/citizen_or_spr_3/age_65_to_70_contribution_calculator.rb
|
209
|
+
- lib/singapore_cpf_calculator/year_2022/citizen_or_spr_3/age_70_up_contribution_calculator.rb
|
210
|
+
- lib/singapore_cpf_calculator/year_2022/citizen_or_spr_3/citizen_or_spr3_base.rb
|
211
|
+
- lib/singapore_cpf_calculator/year_2022/spr_1_fg.rb
|
212
|
+
- lib/singapore_cpf_calculator/year_2022/spr_1_fg/age_55_below_contribution_calculator.rb
|
213
|
+
- lib/singapore_cpf_calculator/year_2022/spr_1_fg/age_55_to_60_contribution_calculator.rb
|
214
|
+
- lib/singapore_cpf_calculator/year_2022/spr_1_fg/age_60_to_65_contribution_calculator.rb
|
215
|
+
- lib/singapore_cpf_calculator/year_2022/spr_1_fg/age_65_to_70_contribution_calculator.rb
|
216
|
+
- lib/singapore_cpf_calculator/year_2022/spr_1_fg/age_70_up_contribution_calculator.rb
|
217
|
+
- lib/singapore_cpf_calculator/year_2022/spr_1_gg.rb
|
218
|
+
- lib/singapore_cpf_calculator/year_2022/spr_1_gg/age_55_below_contribution_calculator.rb
|
219
|
+
- lib/singapore_cpf_calculator/year_2022/spr_1_gg/age_55_to_60_contribution_calculator.rb
|
220
|
+
- lib/singapore_cpf_calculator/year_2022/spr_1_gg/age_60_to_65_contribution_calculator.rb
|
221
|
+
- lib/singapore_cpf_calculator/year_2022/spr_1_gg/age_65_up_contribution_calculator.rb
|
222
|
+
- lib/singapore_cpf_calculator/year_2022/spr_2_fg.rb
|
223
|
+
- lib/singapore_cpf_calculator/year_2022/spr_2_fg/age_55_below_contribution_calculator.rb
|
224
|
+
- lib/singapore_cpf_calculator/year_2022/spr_2_fg/age_55_to_60_contribution_calculator.rb
|
225
|
+
- lib/singapore_cpf_calculator/year_2022/spr_2_fg/age_60_to_65_contribution_calculator.rb
|
226
|
+
- lib/singapore_cpf_calculator/year_2022/spr_2_fg/age_65_to_70_contribution_calculator.rb
|
227
|
+
- lib/singapore_cpf_calculator/year_2022/spr_2_fg/age_70_up_contribution_calculator.rb
|
228
|
+
- lib/singapore_cpf_calculator/year_2022/spr_2_gg.rb
|
229
|
+
- lib/singapore_cpf_calculator/year_2022/spr_2_gg/age_55_below_contribution_calculator.rb
|
230
|
+
- lib/singapore_cpf_calculator/year_2022/spr_2_gg/age_55_to_60_contribution_calculator.rb
|
231
|
+
- lib/singapore_cpf_calculator/year_2022/spr_2_gg/age_60_to_65_contribution_calculator.rb
|
232
|
+
- lib/singapore_cpf_calculator/year_2022/spr_2_gg/age_65_up_contribution_calculator.rb
|
199
233
|
- lib/singapore_cpf_calculator/year_common.rb
|
200
234
|
- singapore_cpf_calculator.gemspec
|
201
235
|
- spec/acceptance/company_a.csv
|
@@ -290,6 +324,35 @@ files:
|
|
290
324
|
- spec/singapore_cpf_calculator/year_2016/spr_2_gg/age_65_up_contribution_calculator_spec.rb
|
291
325
|
- spec/singapore_cpf_calculator/year_2016/spr_2_gg_spec.rb
|
292
326
|
- spec/singapore_cpf_calculator/year_2016_spec.rb
|
327
|
+
- spec/singapore_cpf_calculator/year_2022/citizen_or_spr_3/age_55_below_contribution_calculator_spec.rb
|
328
|
+
- spec/singapore_cpf_calculator/year_2022/citizen_or_spr_3/age_55_to_60_contribution_calculator_spec.rb
|
329
|
+
- spec/singapore_cpf_calculator/year_2022/citizen_or_spr_3/age_60_to_65_contribution_calculator_spec.rb
|
330
|
+
- spec/singapore_cpf_calculator/year_2022/citizen_or_spr_3/age_65_to_70_contribution_calculator_spec.rb
|
331
|
+
- spec/singapore_cpf_calculator/year_2022/citizen_or_spr_3/age_70_up_contribution_spec.rb
|
332
|
+
- spec/singapore_cpf_calculator/year_2022/citizen_or_spr_3_spec.rb
|
333
|
+
- spec/singapore_cpf_calculator/year_2022/spr_1_fg/age_55_below_contribution_calculator_spec.rb
|
334
|
+
- spec/singapore_cpf_calculator/year_2022/spr_1_fg/age_55_to_60_contribution_calculator_spec.rb
|
335
|
+
- spec/singapore_cpf_calculator/year_2022/spr_1_fg/age_60_to_65_contribution_calculator_spec.rb
|
336
|
+
- spec/singapore_cpf_calculator/year_2022/spr_1_fg/age_65_to_70_contribution_calculator_spec.rb
|
337
|
+
- spec/singapore_cpf_calculator/year_2022/spr_1_fg/age_70_up_contribution_calculator_spec.rb
|
338
|
+
- spec/singapore_cpf_calculator/year_2022/spr_1_fg_spec.rb
|
339
|
+
- spec/singapore_cpf_calculator/year_2022/spr_1_gg/age_55_below_contribution_calculator_spec.rb
|
340
|
+
- spec/singapore_cpf_calculator/year_2022/spr_1_gg/age_55_to_60_contribution_calculator_spec.rb
|
341
|
+
- spec/singapore_cpf_calculator/year_2022/spr_1_gg/age_60_to_65_contribution_calculator_spec.rb
|
342
|
+
- spec/singapore_cpf_calculator/year_2022/spr_1_gg/age_65_up_contribution_calculator_spec.rb
|
343
|
+
- spec/singapore_cpf_calculator/year_2022/spr_1_gg_spec.rb
|
344
|
+
- spec/singapore_cpf_calculator/year_2022/spr_2_fg/age_55_below_contribution_calculator_spec.rb
|
345
|
+
- spec/singapore_cpf_calculator/year_2022/spr_2_fg/age_55_to_60_contribution_calculator_spec.rb
|
346
|
+
- spec/singapore_cpf_calculator/year_2022/spr_2_fg/age_60_to_65_contribution_calculator_spec.rb
|
347
|
+
- spec/singapore_cpf_calculator/year_2022/spr_2_fg/age_65_to_70_contribution_calculator_spec.rb
|
348
|
+
- spec/singapore_cpf_calculator/year_2022/spr_2_fg/age_70_up_contribution_calculator_spec.rb
|
349
|
+
- spec/singapore_cpf_calculator/year_2022/spr_2_fg_spec.rb
|
350
|
+
- spec/singapore_cpf_calculator/year_2022/spr_2_gg/age_55_below_contribution_calculator_spec.rb
|
351
|
+
- spec/singapore_cpf_calculator/year_2022/spr_2_gg/age_55_to_60_contribution_calculator_spec.rb
|
352
|
+
- spec/singapore_cpf_calculator/year_2022/spr_2_gg/age_60_to_65_contribution_calculator_spec.rb
|
353
|
+
- spec/singapore_cpf_calculator/year_2022/spr_2_gg/age_65_up_contribution_calculator_spec.rb
|
354
|
+
- spec/singapore_cpf_calculator/year_2022/spr_2_gg_spec.rb
|
355
|
+
- spec/singapore_cpf_calculator/year_2022_spec.rb
|
293
356
|
- spec/singapore_cpf_calculator_spec.rb
|
294
357
|
- spec/spec_helper.rb
|
295
358
|
homepage: https://github.com/payrollhero/singapore_cpf_calculator
|
@@ -311,7 +374,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
311
374
|
- !ruby/object:Gem::Version
|
312
375
|
version: '0'
|
313
376
|
requirements: []
|
314
|
-
rubygems_version: 3.
|
377
|
+
rubygems_version: 3.2.32
|
315
378
|
signing_key:
|
316
379
|
specification_version: 4
|
317
380
|
summary: A Singapore's Central Provident Fund (CPF) contributions calculator.
|
@@ -408,5 +471,34 @@ test_files:
|
|
408
471
|
- spec/singapore_cpf_calculator/year_2016/spr_2_gg/age_65_up_contribution_calculator_spec.rb
|
409
472
|
- spec/singapore_cpf_calculator/year_2016/spr_2_gg_spec.rb
|
410
473
|
- spec/singapore_cpf_calculator/year_2016_spec.rb
|
474
|
+
- spec/singapore_cpf_calculator/year_2022/citizen_or_spr_3/age_55_below_contribution_calculator_spec.rb
|
475
|
+
- spec/singapore_cpf_calculator/year_2022/citizen_or_spr_3/age_55_to_60_contribution_calculator_spec.rb
|
476
|
+
- spec/singapore_cpf_calculator/year_2022/citizen_or_spr_3/age_60_to_65_contribution_calculator_spec.rb
|
477
|
+
- spec/singapore_cpf_calculator/year_2022/citizen_or_spr_3/age_65_to_70_contribution_calculator_spec.rb
|
478
|
+
- spec/singapore_cpf_calculator/year_2022/citizen_or_spr_3/age_70_up_contribution_spec.rb
|
479
|
+
- spec/singapore_cpf_calculator/year_2022/citizen_or_spr_3_spec.rb
|
480
|
+
- spec/singapore_cpf_calculator/year_2022/spr_1_fg/age_55_below_contribution_calculator_spec.rb
|
481
|
+
- spec/singapore_cpf_calculator/year_2022/spr_1_fg/age_55_to_60_contribution_calculator_spec.rb
|
482
|
+
- spec/singapore_cpf_calculator/year_2022/spr_1_fg/age_60_to_65_contribution_calculator_spec.rb
|
483
|
+
- spec/singapore_cpf_calculator/year_2022/spr_1_fg/age_65_to_70_contribution_calculator_spec.rb
|
484
|
+
- spec/singapore_cpf_calculator/year_2022/spr_1_fg/age_70_up_contribution_calculator_spec.rb
|
485
|
+
- spec/singapore_cpf_calculator/year_2022/spr_1_fg_spec.rb
|
486
|
+
- spec/singapore_cpf_calculator/year_2022/spr_1_gg/age_55_below_contribution_calculator_spec.rb
|
487
|
+
- spec/singapore_cpf_calculator/year_2022/spr_1_gg/age_55_to_60_contribution_calculator_spec.rb
|
488
|
+
- spec/singapore_cpf_calculator/year_2022/spr_1_gg/age_60_to_65_contribution_calculator_spec.rb
|
489
|
+
- spec/singapore_cpf_calculator/year_2022/spr_1_gg/age_65_up_contribution_calculator_spec.rb
|
490
|
+
- spec/singapore_cpf_calculator/year_2022/spr_1_gg_spec.rb
|
491
|
+
- spec/singapore_cpf_calculator/year_2022/spr_2_fg/age_55_below_contribution_calculator_spec.rb
|
492
|
+
- spec/singapore_cpf_calculator/year_2022/spr_2_fg/age_55_to_60_contribution_calculator_spec.rb
|
493
|
+
- spec/singapore_cpf_calculator/year_2022/spr_2_fg/age_60_to_65_contribution_calculator_spec.rb
|
494
|
+
- spec/singapore_cpf_calculator/year_2022/spr_2_fg/age_65_to_70_contribution_calculator_spec.rb
|
495
|
+
- spec/singapore_cpf_calculator/year_2022/spr_2_fg/age_70_up_contribution_calculator_spec.rb
|
496
|
+
- spec/singapore_cpf_calculator/year_2022/spr_2_fg_spec.rb
|
497
|
+
- spec/singapore_cpf_calculator/year_2022/spr_2_gg/age_55_below_contribution_calculator_spec.rb
|
498
|
+
- spec/singapore_cpf_calculator/year_2022/spr_2_gg/age_55_to_60_contribution_calculator_spec.rb
|
499
|
+
- spec/singapore_cpf_calculator/year_2022/spr_2_gg/age_60_to_65_contribution_calculator_spec.rb
|
500
|
+
- spec/singapore_cpf_calculator/year_2022/spr_2_gg/age_65_up_contribution_calculator_spec.rb
|
501
|
+
- spec/singapore_cpf_calculator/year_2022/spr_2_gg_spec.rb
|
502
|
+
- spec/singapore_cpf_calculator/year_2022_spec.rb
|
411
503
|
- spec/singapore_cpf_calculator_spec.rb
|
412
504
|
- spec/spec_helper.rb
|