singapore_cpf_calculator 1.4.0 → 1.5.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (56) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/build.yml +6 -2
  3. data/.rubocop.yml +81 -0
  4. data/.rubocop_todo.yml +326 -0
  5. data/Gemfile +0 -1
  6. data/README.md +1 -0
  7. data/lib/singapore_cpf_calculator/version.rb +1 -1
  8. data/lib/singapore_cpf_calculator/year_2022.rb +2 -2
  9. data/lib/singapore_cpf_calculator/year_2023/citizen_or_spr_3/age_55_below_contribution_calculator.rb +8 -0
  10. data/lib/singapore_cpf_calculator/year_2023/citizen_or_spr_3/age_55_to_60_contribution_calculator.rb +32 -0
  11. data/lib/singapore_cpf_calculator/year_2023/citizen_or_spr_3/age_60_to_65_contribution_calculator.rb +32 -0
  12. data/lib/singapore_cpf_calculator/year_2023/citizen_or_spr_3/age_65_to_70_contribution_calculator.rb +32 -0
  13. data/lib/singapore_cpf_calculator/year_2023/citizen_or_spr_3/age_70_up_contribution_calculator.rb +9 -0
  14. data/lib/singapore_cpf_calculator/year_2023/citizen_or_spr_3/citizen_or_spr3_base.rb +8 -0
  15. data/lib/singapore_cpf_calculator/year_2023/citizen_or_spr_3.rb +40 -0
  16. data/lib/singapore_cpf_calculator/year_2023/spr_1_fg/age_55_below_contribution_calculator.rb +11 -0
  17. data/lib/singapore_cpf_calculator/year_2023/spr_1_fg/age_55_to_60_contribution_calculator.rb +32 -0
  18. data/lib/singapore_cpf_calculator/year_2023/spr_1_fg/age_60_to_65_contribution_calculator.rb +32 -0
  19. data/lib/singapore_cpf_calculator/year_2023/spr_1_fg/age_65_to_70_contribution_calculator.rb +32 -0
  20. data/lib/singapore_cpf_calculator/year_2023/spr_1_fg/age_70_up_contribution_calculator.rb +8 -0
  21. data/lib/singapore_cpf_calculator/year_2023/spr_1_fg.rb +40 -0
  22. data/lib/singapore_cpf_calculator/year_2023/spr_1_gg.rb +29 -0
  23. data/lib/singapore_cpf_calculator/year_2023/spr_2_fg/age_55_below_contribution_calculator.rb +11 -0
  24. data/lib/singapore_cpf_calculator/year_2023/spr_2_fg/age_55_to_60_contribution_calculator.rb +32 -0
  25. data/lib/singapore_cpf_calculator/year_2023/spr_2_fg/age_60_to_65_contribution_calculator.rb +32 -0
  26. data/lib/singapore_cpf_calculator/year_2023/spr_2_fg/age_65_to_70_contribution_calculator.rb +32 -0
  27. data/lib/singapore_cpf_calculator/year_2023/spr_2_fg/age_70_up_contribution_calculator.rb +8 -0
  28. data/lib/singapore_cpf_calculator/year_2023/spr_2_fg.rb +40 -0
  29. data/lib/singapore_cpf_calculator/year_2023/spr_2_gg.rb +29 -0
  30. data/lib/singapore_cpf_calculator/year_2023/year_2023.rb +35 -0
  31. data/lib/singapore_cpf_calculator/year_2023.rb +35 -0
  32. data/lib/singapore_cpf_calculator.rb +1 -0
  33. data/singapore_cpf_calculator.gemspec +3 -1
  34. data/spec/singapore_cpf_calculator/year_2023/citizen_or_spr_3/age_55_below_contribution_calculator_spec.rb +63 -0
  35. data/spec/singapore_cpf_calculator/year_2023/citizen_or_spr_3/age_55_to_60_contribution_calculator_spec.rb +63 -0
  36. data/spec/singapore_cpf_calculator/year_2023/citizen_or_spr_3/age_60_to_65_contribution_calculator_spec.rb +63 -0
  37. data/spec/singapore_cpf_calculator/year_2023/citizen_or_spr_3/age_65_to_70_contribution_calculator_spec.rb +63 -0
  38. data/spec/singapore_cpf_calculator/year_2023/citizen_or_spr_3/age_70_up_contribution_spec.rb +63 -0
  39. data/spec/singapore_cpf_calculator/year_2023/citizen_or_spr_3_spec.rb +242 -0
  40. data/spec/singapore_cpf_calculator/year_2023/spr_1_fg/age_55_below_contribution_calculator_spec.rb +63 -0
  41. data/spec/singapore_cpf_calculator/year_2023/spr_1_fg/age_55_to_60_contribution_calculator_spec.rb +63 -0
  42. data/spec/singapore_cpf_calculator/year_2023/spr_1_fg/age_60_to_65_contribution_calculator_spec.rb +63 -0
  43. data/spec/singapore_cpf_calculator/year_2023/spr_1_fg/age_65_to_70_contribution_calculator_spec.rb +63 -0
  44. data/spec/singapore_cpf_calculator/year_2023/spr_1_fg/age_70_up_contribution_calculator_spec.rb +63 -0
  45. data/spec/singapore_cpf_calculator/year_2023/spr_1_fg_spec.rb +176 -0
  46. data/spec/singapore_cpf_calculator/year_2023/spr_1_gg_spec.rb +158 -0
  47. data/spec/singapore_cpf_calculator/year_2023/spr_2_fg/age_55_below_contribution_calculator_spec.rb +63 -0
  48. data/spec/singapore_cpf_calculator/year_2023/spr_2_fg/age_55_to_60_contribution_calculator_spec.rb +63 -0
  49. data/spec/singapore_cpf_calculator/year_2023/spr_2_fg/age_60_to_65_contribution_calculator_spec.rb +63 -0
  50. data/spec/singapore_cpf_calculator/year_2023/spr_2_fg/age_65_to_70_contribution_calculator_spec.rb +63 -0
  51. data/spec/singapore_cpf_calculator/year_2023/spr_2_fg/age_70_up_contribution_calculator_spec.rb +63 -0
  52. data/spec/singapore_cpf_calculator/year_2023/spr_2_fg_spec.rb +176 -0
  53. data/spec/singapore_cpf_calculator/year_2023/spr_2_gg_spec.rb +158 -0
  54. data/spec/singapore_cpf_calculator/year_2023_spec.rb +193 -0
  55. data/spec/singapore_cpf_calculator_spec.rb +2 -1
  56. metadata +83 -131
metadata CHANGED
@@ -1,16 +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.0
4
+ version: 1.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ronald Maravilla
8
8
  - Mathieu Jobin
9
9
  - Pete Henchaw
10
- autorequire:
10
+ autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2022-03-15 00:00:00.000000000 Z
13
+ date: 2022-11-21 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: bundler
@@ -54,6 +54,34 @@ dependencies:
54
54
  - - ">="
55
55
  - !ruby/object:Gem::Version
56
56
  version: '0'
57
+ - !ruby/object:Gem::Dependency
58
+ name: rubocop
59
+ requirement: !ruby/object:Gem::Requirement
60
+ requirements:
61
+ - - ">="
62
+ - !ruby/object:Gem::Version
63
+ version: '0'
64
+ type: :development
65
+ prerelease: false
66
+ version_requirements: !ruby/object:Gem::Requirement
67
+ requirements:
68
+ - - ">="
69
+ - !ruby/object:Gem::Version
70
+ version: '0'
71
+ - !ruby/object:Gem::Dependency
72
+ name: simplecov
73
+ requirement: !ruby/object:Gem::Requirement
74
+ requirements:
75
+ - - ">="
76
+ - !ruby/object:Gem::Version
77
+ version: '0'
78
+ type: :development
79
+ prerelease: false
80
+ version_requirements: !ruby/object:Gem::Requirement
81
+ requirements:
82
+ - - ">="
83
+ - !ruby/object:Gem::Version
84
+ version: '0'
57
85
  - !ruby/object:Gem::Dependency
58
86
  name: activesupport
59
87
  requirement: !ruby/object:Gem::Requirement
@@ -78,6 +106,8 @@ files:
78
106
  - ".github/workflows/build.yml"
79
107
  - ".gitignore"
80
108
  - ".rspec"
109
+ - ".rubocop.yml"
110
+ - ".rubocop_todo.yml"
81
111
  - Gemfile
82
112
  - LICENSE.txt
83
113
  - README.md
@@ -230,6 +260,29 @@ files:
230
260
  - lib/singapore_cpf_calculator/year_2022/spr_2_gg/age_55_to_60_contribution_calculator.rb
231
261
  - lib/singapore_cpf_calculator/year_2022/spr_2_gg/age_60_to_65_contribution_calculator.rb
232
262
  - lib/singapore_cpf_calculator/year_2022/spr_2_gg/age_65_up_contribution_calculator.rb
263
+ - lib/singapore_cpf_calculator/year_2023.rb
264
+ - lib/singapore_cpf_calculator/year_2023/citizen_or_spr_3.rb
265
+ - lib/singapore_cpf_calculator/year_2023/citizen_or_spr_3/age_55_below_contribution_calculator.rb
266
+ - lib/singapore_cpf_calculator/year_2023/citizen_or_spr_3/age_55_to_60_contribution_calculator.rb
267
+ - lib/singapore_cpf_calculator/year_2023/citizen_or_spr_3/age_60_to_65_contribution_calculator.rb
268
+ - lib/singapore_cpf_calculator/year_2023/citizen_or_spr_3/age_65_to_70_contribution_calculator.rb
269
+ - lib/singapore_cpf_calculator/year_2023/citizen_or_spr_3/age_70_up_contribution_calculator.rb
270
+ - lib/singapore_cpf_calculator/year_2023/citizen_or_spr_3/citizen_or_spr3_base.rb
271
+ - lib/singapore_cpf_calculator/year_2023/spr_1_fg.rb
272
+ - lib/singapore_cpf_calculator/year_2023/spr_1_fg/age_55_below_contribution_calculator.rb
273
+ - lib/singapore_cpf_calculator/year_2023/spr_1_fg/age_55_to_60_contribution_calculator.rb
274
+ - lib/singapore_cpf_calculator/year_2023/spr_1_fg/age_60_to_65_contribution_calculator.rb
275
+ - lib/singapore_cpf_calculator/year_2023/spr_1_fg/age_65_to_70_contribution_calculator.rb
276
+ - lib/singapore_cpf_calculator/year_2023/spr_1_fg/age_70_up_contribution_calculator.rb
277
+ - lib/singapore_cpf_calculator/year_2023/spr_1_gg.rb
278
+ - lib/singapore_cpf_calculator/year_2023/spr_2_fg.rb
279
+ - lib/singapore_cpf_calculator/year_2023/spr_2_fg/age_55_below_contribution_calculator.rb
280
+ - lib/singapore_cpf_calculator/year_2023/spr_2_fg/age_55_to_60_contribution_calculator.rb
281
+ - lib/singapore_cpf_calculator/year_2023/spr_2_fg/age_60_to_65_contribution_calculator.rb
282
+ - lib/singapore_cpf_calculator/year_2023/spr_2_fg/age_65_to_70_contribution_calculator.rb
283
+ - lib/singapore_cpf_calculator/year_2023/spr_2_fg/age_70_up_contribution_calculator.rb
284
+ - lib/singapore_cpf_calculator/year_2023/spr_2_gg.rb
285
+ - lib/singapore_cpf_calculator/year_2023/year_2023.rb
233
286
  - lib/singapore_cpf_calculator/year_common.rb
234
287
  - singapore_cpf_calculator.gemspec
235
288
  - spec/acceptance/company_a.csv
@@ -353,13 +406,35 @@ files:
353
406
  - spec/singapore_cpf_calculator/year_2022/spr_2_gg/age_65_up_contribution_calculator_spec.rb
354
407
  - spec/singapore_cpf_calculator/year_2022/spr_2_gg_spec.rb
355
408
  - spec/singapore_cpf_calculator/year_2022_spec.rb
409
+ - spec/singapore_cpf_calculator/year_2023/citizen_or_spr_3/age_55_below_contribution_calculator_spec.rb
410
+ - spec/singapore_cpf_calculator/year_2023/citizen_or_spr_3/age_55_to_60_contribution_calculator_spec.rb
411
+ - spec/singapore_cpf_calculator/year_2023/citizen_or_spr_3/age_60_to_65_contribution_calculator_spec.rb
412
+ - spec/singapore_cpf_calculator/year_2023/citizen_or_spr_3/age_65_to_70_contribution_calculator_spec.rb
413
+ - spec/singapore_cpf_calculator/year_2023/citizen_or_spr_3/age_70_up_contribution_spec.rb
414
+ - spec/singapore_cpf_calculator/year_2023/citizen_or_spr_3_spec.rb
415
+ - spec/singapore_cpf_calculator/year_2023/spr_1_fg/age_55_below_contribution_calculator_spec.rb
416
+ - spec/singapore_cpf_calculator/year_2023/spr_1_fg/age_55_to_60_contribution_calculator_spec.rb
417
+ - spec/singapore_cpf_calculator/year_2023/spr_1_fg/age_60_to_65_contribution_calculator_spec.rb
418
+ - spec/singapore_cpf_calculator/year_2023/spr_1_fg/age_65_to_70_contribution_calculator_spec.rb
419
+ - spec/singapore_cpf_calculator/year_2023/spr_1_fg/age_70_up_contribution_calculator_spec.rb
420
+ - spec/singapore_cpf_calculator/year_2023/spr_1_fg_spec.rb
421
+ - spec/singapore_cpf_calculator/year_2023/spr_1_gg_spec.rb
422
+ - spec/singapore_cpf_calculator/year_2023/spr_2_fg/age_55_below_contribution_calculator_spec.rb
423
+ - spec/singapore_cpf_calculator/year_2023/spr_2_fg/age_55_to_60_contribution_calculator_spec.rb
424
+ - spec/singapore_cpf_calculator/year_2023/spr_2_fg/age_60_to_65_contribution_calculator_spec.rb
425
+ - spec/singapore_cpf_calculator/year_2023/spr_2_fg/age_65_to_70_contribution_calculator_spec.rb
426
+ - spec/singapore_cpf_calculator/year_2023/spr_2_fg/age_70_up_contribution_calculator_spec.rb
427
+ - spec/singapore_cpf_calculator/year_2023/spr_2_fg_spec.rb
428
+ - spec/singapore_cpf_calculator/year_2023/spr_2_gg_spec.rb
429
+ - spec/singapore_cpf_calculator/year_2023_spec.rb
356
430
  - spec/singapore_cpf_calculator_spec.rb
357
431
  - spec/spec_helper.rb
358
432
  homepage: https://github.com/payrollhero/singapore_cpf_calculator
359
433
  licenses:
360
434
  - BSD-3-Clause
361
- metadata: {}
362
- post_install_message:
435
+ metadata:
436
+ rubygems_mfa_required: 'true'
437
+ post_install_message:
363
438
  rdoc_options: []
364
439
  require_paths:
365
440
  - lib
@@ -374,131 +449,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
374
449
  - !ruby/object:Gem::Version
375
450
  version: '0'
376
451
  requirements: []
377
- rubygems_version: 3.2.32
378
- signing_key:
452
+ rubygems_version: 3.4.0.dev
453
+ signing_key:
379
454
  specification_version: 4
380
455
  summary: A Singapore's Central Provident Fund (CPF) contributions calculator.
381
- test_files:
382
- - spec/acceptance/company_a.csv
383
- - spec/acceptance/company_a_spec.rb
384
- - spec/singapore_cpf_calculator/age_group_spec.rb
385
- - spec/singapore_cpf_calculator/spr_status_spec.rb
386
- - spec/singapore_cpf_calculator/year_2014/citizen_or_spr_3/age_50_below_contribution_calculator_spec.rb
387
- - spec/singapore_cpf_calculator/year_2014/citizen_or_spr_3/age_50_to_55_contribution_calculator_spec.rb
388
- - spec/singapore_cpf_calculator/year_2014/citizen_or_spr_3/age_55_to_60_contribution_calculator_spec.rb
389
- - spec/singapore_cpf_calculator/year_2014/citizen_or_spr_3/age_60_to_65_contribution_calculator_spec.rb
390
- - spec/singapore_cpf_calculator/year_2014/citizen_or_spr_3/age_65_up_contribution_calculator_spec.rb
391
- - spec/singapore_cpf_calculator/year_2014/citizen_or_spr_3_spec.rb
392
- - spec/singapore_cpf_calculator/year_2014/spr_1_fg/age_50_below_contribution_calculator_spec.rb
393
- - spec/singapore_cpf_calculator/year_2014/spr_1_fg/age_50_to_55_contribution_calculator_spec.rb
394
- - spec/singapore_cpf_calculator/year_2014/spr_1_fg/age_55_to_60_contribution_calculator_spec.rb
395
- - spec/singapore_cpf_calculator/year_2014/spr_1_fg/age_60_to_65_contribution_calculator_spec.rb
396
- - spec/singapore_cpf_calculator/year_2014/spr_1_fg/age_65_up_contribution_calculator_spec.rb
397
- - spec/singapore_cpf_calculator/year_2014/spr_1_fg_spec.rb
398
- - spec/singapore_cpf_calculator/year_2014/spr_1_gg/age_50_below_contribution_calculator_spec.rb
399
- - spec/singapore_cpf_calculator/year_2014/spr_1_gg/age_50_to_55_contribution_calculator_spec.rb
400
- - spec/singapore_cpf_calculator/year_2014/spr_1_gg/age_55_to_60_contribution_calculator_spec.rb
401
- - spec/singapore_cpf_calculator/year_2014/spr_1_gg/age_60_to_65_contribution_calculator_spec.rb
402
- - spec/singapore_cpf_calculator/year_2014/spr_1_gg/age_65_up_contribution_calculator_spec.rb
403
- - spec/singapore_cpf_calculator/year_2014/spr_1_gg_spec.rb
404
- - spec/singapore_cpf_calculator/year_2014/spr_2_fg/age_50_below_contribution_calculator_spec.rb
405
- - spec/singapore_cpf_calculator/year_2014/spr_2_fg/age_50_to_55_contribution_calculator_spec.rb
406
- - spec/singapore_cpf_calculator/year_2014/spr_2_fg/age_55_to_60_contribution_calculator_spec.rb
407
- - spec/singapore_cpf_calculator/year_2014/spr_2_fg/age_60_to_65_contribution_calculator_spec.rb
408
- - spec/singapore_cpf_calculator/year_2014/spr_2_fg/age_65_up_contribution_calculator_spec.rb
409
- - spec/singapore_cpf_calculator/year_2014/spr_2_fg_spec.rb
410
- - spec/singapore_cpf_calculator/year_2014/spr_2_gg/age_50_below_contribution_calculator_spec.rb
411
- - spec/singapore_cpf_calculator/year_2014/spr_2_gg/age_50_to_55_contribution_calculator_spec.rb
412
- - spec/singapore_cpf_calculator/year_2014/spr_2_gg/age_55_to_60_contribution_calculator_spec.rb
413
- - spec/singapore_cpf_calculator/year_2014/spr_2_gg/age_60_to_65_contribution_calculator_spec.rb
414
- - spec/singapore_cpf_calculator/year_2014/spr_2_gg/age_65_up_contribution_calculator_spec.rb
415
- - spec/singapore_cpf_calculator/year_2014/spr_2_gg_spec.rb
416
- - spec/singapore_cpf_calculator/year_2014_spec.rb
417
- - spec/singapore_cpf_calculator/year_2015/citizen_or_spr_3/age_50_below_contribution_calculator_spec.rb
418
- - spec/singapore_cpf_calculator/year_2015/citizen_or_spr_3/age_50_to_55_contribution_calculator_spec.rb
419
- - spec/singapore_cpf_calculator/year_2015/citizen_or_spr_3/age_55_to_60_contribution_calculator_spec.rb
420
- - spec/singapore_cpf_calculator/year_2015/citizen_or_spr_3/age_60_to_65_contribution_calculator_spec.rb
421
- - spec/singapore_cpf_calculator/year_2015/citizen_or_spr_3/age_65_up_contribution_calculator_spec.rb
422
- - spec/singapore_cpf_calculator/year_2015/citizen_or_spr_3_spec.rb
423
- - spec/singapore_cpf_calculator/year_2015/spr_1_fg/age_50_below_contribution_calculator_spec.rb
424
- - spec/singapore_cpf_calculator/year_2015/spr_1_fg/age_50_to_55_contribution_calculator_spec.rb
425
- - spec/singapore_cpf_calculator/year_2015/spr_1_fg/age_55_to_60_contribution_calculator_spec.rb
426
- - spec/singapore_cpf_calculator/year_2015/spr_1_fg/age_60_to_65_contribution_calculator_spec.rb
427
- - spec/singapore_cpf_calculator/year_2015/spr_1_fg/age_65_up_contribution_calculator_spec.rb
428
- - spec/singapore_cpf_calculator/year_2015/spr_1_fg_spec.rb
429
- - spec/singapore_cpf_calculator/year_2015/spr_1_gg/age_50_below_contribution_calculator_spec.rb
430
- - spec/singapore_cpf_calculator/year_2015/spr_1_gg/age_50_to_55_contribution_calculator_spec.rb
431
- - spec/singapore_cpf_calculator/year_2015/spr_1_gg/age_55_to_60_contribution_calculator_spec.rb
432
- - spec/singapore_cpf_calculator/year_2015/spr_1_gg/age_60_to_65_contribution_calculator_spec.rb
433
- - spec/singapore_cpf_calculator/year_2015/spr_1_gg/age_65_up_contribution_calculator_spec.rb
434
- - spec/singapore_cpf_calculator/year_2015/spr_1_gg_spec.rb
435
- - spec/singapore_cpf_calculator/year_2015/spr_2_fg/age_50_below_contribution_calculator_spec.rb
436
- - spec/singapore_cpf_calculator/year_2015/spr_2_fg/age_50_to_55_contribution_calculator_spec.rb
437
- - spec/singapore_cpf_calculator/year_2015/spr_2_fg/age_55_to_60_contribution_calculator_spec.rb
438
- - spec/singapore_cpf_calculator/year_2015/spr_2_fg/age_60_to_65_contribution_calculator_spec.rb
439
- - spec/singapore_cpf_calculator/year_2015/spr_2_fg/age_65_up_contribution_calculator_spec.rb
440
- - spec/singapore_cpf_calculator/year_2015/spr_2_fg_spec.rb
441
- - spec/singapore_cpf_calculator/year_2015/spr_2_gg/age_50_below_contribution_calculator_spec.rb
442
- - spec/singapore_cpf_calculator/year_2015/spr_2_gg/age_50_to_55_contribution_calculator_spec.rb
443
- - spec/singapore_cpf_calculator/year_2015/spr_2_gg/age_55_to_60_contribution_calculator_spec.rb
444
- - spec/singapore_cpf_calculator/year_2015/spr_2_gg/age_60_to_65_contribution_calculator_spec.rb
445
- - spec/singapore_cpf_calculator/year_2015/spr_2_gg/age_65_up_contribution_calculator_spec.rb
446
- - spec/singapore_cpf_calculator/year_2015/spr_2_gg_spec.rb
447
- - spec/singapore_cpf_calculator/year_2015_spec.rb
448
- - spec/singapore_cpf_calculator/year_2016/citizen_or_spr_3/age_55_below_contribution_calculator_spec.rb
449
- - spec/singapore_cpf_calculator/year_2016/citizen_or_spr_3/age_55_to_60_contribution_calculator_spec.rb
450
- - spec/singapore_cpf_calculator/year_2016/citizen_or_spr_3/age_60_to_65_contribution_calculator_spec.rb
451
- - spec/singapore_cpf_calculator/year_2016/citizen_or_spr_3/age_65_up_contribution_calculator_spec.rb
452
- - spec/singapore_cpf_calculator/year_2016/citizen_or_spr_3_spec.rb
453
- - spec/singapore_cpf_calculator/year_2016/spr_1_fg/age_55_below_contribution_calculator_spec.rb
454
- - spec/singapore_cpf_calculator/year_2016/spr_1_fg/age_55_to_60_contribution_calculator_spec.rb
455
- - spec/singapore_cpf_calculator/year_2016/spr_1_fg/age_60_to_65_contribution_calculator_spec.rb
456
- - spec/singapore_cpf_calculator/year_2016/spr_1_fg/age_65_up_contribution_calculator_spec.rb
457
- - spec/singapore_cpf_calculator/year_2016/spr_1_fg_spec.rb
458
- - spec/singapore_cpf_calculator/year_2016/spr_1_gg/age_55_below_contribution_calculator_spec.rb
459
- - spec/singapore_cpf_calculator/year_2016/spr_1_gg/age_55_to_60_contribution_calculator_spec.rb
460
- - spec/singapore_cpf_calculator/year_2016/spr_1_gg/age_60_to_65_contribution_calculator_spec.rb
461
- - spec/singapore_cpf_calculator/year_2016/spr_1_gg/age_65_up_contribution_calculator_spec.rb
462
- - spec/singapore_cpf_calculator/year_2016/spr_1_gg_spec.rb
463
- - spec/singapore_cpf_calculator/year_2016/spr_2_fg/age_55_below_contribution_calculator_spec.rb
464
- - spec/singapore_cpf_calculator/year_2016/spr_2_fg/age_55_to_60_contribution_calculator_spec.rb
465
- - spec/singapore_cpf_calculator/year_2016/spr_2_fg/age_60_to_65_contribution_calculator_spec.rb
466
- - spec/singapore_cpf_calculator/year_2016/spr_2_fg/age_65_up_contribution_calculator_spec.rb
467
- - spec/singapore_cpf_calculator/year_2016/spr_2_fg_spec.rb
468
- - spec/singapore_cpf_calculator/year_2016/spr_2_gg/age_55_below_contribution_calculator_spec.rb
469
- - spec/singapore_cpf_calculator/year_2016/spr_2_gg/age_55_to_60_contribution_calculator_spec.rb
470
- - spec/singapore_cpf_calculator/year_2016/spr_2_gg/age_60_to_65_contribution_calculator_spec.rb
471
- - spec/singapore_cpf_calculator/year_2016/spr_2_gg/age_65_up_contribution_calculator_spec.rb
472
- - spec/singapore_cpf_calculator/year_2016/spr_2_gg_spec.rb
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
503
- - spec/singapore_cpf_calculator_spec.rb
504
- - spec/spec_helper.rb
456
+ test_files: []