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.
Files changed (84) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/build.yml +33 -0
  3. data/Gemfile +1 -0
  4. data/README.md +1 -0
  5. data/lib/singapore_cpf_calculator/age_group.rb +27 -5
  6. data/lib/singapore_cpf_calculator/base_calculator.rb +14 -2
  7. data/lib/singapore_cpf_calculator/requirements/group_above_65_to_70_years.rb +13 -0
  8. data/lib/singapore_cpf_calculator/requirements/group_above_70_years.rb +13 -0
  9. data/lib/singapore_cpf_calculator/requirements.rb +3 -0
  10. data/lib/singapore_cpf_calculator/residency_module_common.rb +5 -1
  11. data/lib/singapore_cpf_calculator/version.rb +1 -1
  12. data/lib/singapore_cpf_calculator/year_2016.rb +2 -2
  13. data/lib/singapore_cpf_calculator/year_2022/citizen_or_spr_3/age_55_below_contribution_calculator.rb +8 -0
  14. data/lib/singapore_cpf_calculator/year_2022/citizen_or_spr_3/age_55_to_60_contribution_calculator.rb +32 -0
  15. data/lib/singapore_cpf_calculator/year_2022/citizen_or_spr_3/age_60_to_65_contribution_calculator.rb +32 -0
  16. data/lib/singapore_cpf_calculator/year_2022/citizen_or_spr_3/age_65_to_70_contribution_calculator.rb +32 -0
  17. data/lib/singapore_cpf_calculator/year_2022/citizen_or_spr_3/age_70_up_contribution_calculator.rb +32 -0
  18. data/lib/singapore_cpf_calculator/year_2022/citizen_or_spr_3/citizen_or_spr3_base.rb +9 -0
  19. data/lib/singapore_cpf_calculator/year_2022/citizen_or_spr_3.rb +40 -0
  20. data/lib/singapore_cpf_calculator/year_2022/spr_1_fg/age_55_below_contribution_calculator.rb +11 -0
  21. data/lib/singapore_cpf_calculator/year_2022/spr_1_fg/age_55_to_60_contribution_calculator.rb +32 -0
  22. data/lib/singapore_cpf_calculator/year_2022/spr_1_fg/age_60_to_65_contribution_calculator.rb +32 -0
  23. data/lib/singapore_cpf_calculator/year_2022/spr_1_fg/age_65_to_70_contribution_calculator.rb +32 -0
  24. data/lib/singapore_cpf_calculator/year_2022/spr_1_fg/age_70_up_contribution_calculator.rb +32 -0
  25. data/lib/singapore_cpf_calculator/year_2022/spr_1_fg.rb +40 -0
  26. data/lib/singapore_cpf_calculator/year_2022/spr_1_gg/age_55_below_contribution_calculator.rb +11 -0
  27. data/lib/singapore_cpf_calculator/year_2022/spr_1_gg/age_55_to_60_contribution_calculator.rb +12 -0
  28. data/lib/singapore_cpf_calculator/year_2022/spr_1_gg/age_60_to_65_contribution_calculator.rb +11 -0
  29. data/lib/singapore_cpf_calculator/year_2022/spr_1_gg/age_65_up_contribution_calculator.rb +14 -0
  30. data/lib/singapore_cpf_calculator/year_2022/spr_1_gg.rb +34 -0
  31. data/lib/singapore_cpf_calculator/year_2022/spr_2_fg/age_55_below_contribution_calculator.rb +11 -0
  32. data/lib/singapore_cpf_calculator/year_2022/spr_2_fg/age_55_to_60_contribution_calculator.rb +32 -0
  33. data/lib/singapore_cpf_calculator/year_2022/spr_2_fg/age_60_to_65_contribution_calculator.rb +32 -0
  34. data/lib/singapore_cpf_calculator/year_2022/spr_2_fg/age_65_to_70_contribution_calculator.rb +32 -0
  35. data/lib/singapore_cpf_calculator/year_2022/spr_2_fg/age_70_up_contribution_calculator.rb +32 -0
  36. data/lib/singapore_cpf_calculator/year_2022/spr_2_fg.rb +40 -0
  37. data/lib/singapore_cpf_calculator/year_2022/spr_2_gg/age_55_below_contribution_calculator.rb +11 -0
  38. data/lib/singapore_cpf_calculator/year_2022/spr_2_gg/age_55_to_60_contribution_calculator.rb +11 -0
  39. data/lib/singapore_cpf_calculator/year_2022/spr_2_gg/age_60_to_65_contribution_calculator.rb +11 -0
  40. data/lib/singapore_cpf_calculator/year_2022/spr_2_gg/age_65_up_contribution_calculator.rb +11 -0
  41. data/lib/singapore_cpf_calculator/year_2022/spr_2_gg.rb +34 -0
  42. data/lib/singapore_cpf_calculator/year_2022.rb +35 -0
  43. data/lib/singapore_cpf_calculator.rb +9 -1
  44. data/singapore_cpf_calculator.gemspec +2 -2
  45. data/spec/singapore_cpf_calculator/age_group_spec.rb +15 -3
  46. data/spec/singapore_cpf_calculator/year_2016/citizen_or_spr_3/age_55_to_60_contribution_calculator_spec.rb +1 -1
  47. data/spec/singapore_cpf_calculator/year_2016/citizen_or_spr_3/age_60_to_65_contribution_calculator_spec.rb +2 -2
  48. data/spec/singapore_cpf_calculator/year_2016/citizen_or_spr_3_spec.rb +3 -3
  49. data/spec/singapore_cpf_calculator/year_2016/spr_1_fg/age_55_to_60_contribution_calculator_spec.rb +1 -1
  50. data/spec/singapore_cpf_calculator/year_2016/spr_1_fg/age_60_to_65_contribution_calculator_spec.rb +1 -1
  51. data/spec/singapore_cpf_calculator/year_2016/spr_2_fg/age_60_to_65_contribution_calculator_spec.rb +1 -1
  52. data/spec/singapore_cpf_calculator/year_2022/citizen_or_spr_3/age_55_below_contribution_calculator_spec.rb +63 -0
  53. data/spec/singapore_cpf_calculator/year_2022/citizen_or_spr_3/age_55_to_60_contribution_calculator_spec.rb +63 -0
  54. data/spec/singapore_cpf_calculator/year_2022/citizen_or_spr_3/age_60_to_65_contribution_calculator_spec.rb +63 -0
  55. data/spec/singapore_cpf_calculator/year_2022/citizen_or_spr_3/age_65_to_70_contribution_calculator_spec.rb +63 -0
  56. data/spec/singapore_cpf_calculator/year_2022/citizen_or_spr_3/age_70_up_contribution_spec.rb +63 -0
  57. data/spec/singapore_cpf_calculator/year_2022/citizen_or_spr_3_spec.rb +242 -0
  58. data/spec/singapore_cpf_calculator/year_2022/spr_1_fg/age_55_below_contribution_calculator_spec.rb +63 -0
  59. data/spec/singapore_cpf_calculator/year_2022/spr_1_fg/age_55_to_60_contribution_calculator_spec.rb +63 -0
  60. data/spec/singapore_cpf_calculator/year_2022/spr_1_fg/age_60_to_65_contribution_calculator_spec.rb +63 -0
  61. data/spec/singapore_cpf_calculator/year_2022/spr_1_fg/age_65_to_70_contribution_calculator_spec.rb +63 -0
  62. data/spec/singapore_cpf_calculator/year_2022/spr_1_fg/age_70_up_contribution_calculator_spec.rb +63 -0
  63. data/spec/singapore_cpf_calculator/year_2022/spr_1_fg_spec.rb +176 -0
  64. data/spec/singapore_cpf_calculator/year_2022/spr_1_gg/age_55_below_contribution_calculator_spec.rb +63 -0
  65. data/spec/singapore_cpf_calculator/year_2022/spr_1_gg/age_55_to_60_contribution_calculator_spec.rb +63 -0
  66. data/spec/singapore_cpf_calculator/year_2022/spr_1_gg/age_60_to_65_contribution_calculator_spec.rb +63 -0
  67. data/spec/singapore_cpf_calculator/year_2022/spr_1_gg/age_65_up_contribution_calculator_spec.rb +63 -0
  68. data/spec/singapore_cpf_calculator/year_2022/spr_1_gg_spec.rb +158 -0
  69. data/spec/singapore_cpf_calculator/year_2022/spr_2_fg/age_55_below_contribution_calculator_spec.rb +63 -0
  70. data/spec/singapore_cpf_calculator/year_2022/spr_2_fg/age_55_to_60_contribution_calculator_spec.rb +63 -0
  71. data/spec/singapore_cpf_calculator/year_2022/spr_2_fg/age_60_to_65_contribution_calculator_spec.rb +63 -0
  72. data/spec/singapore_cpf_calculator/year_2022/spr_2_fg/age_65_to_70_contribution_calculator_spec.rb +63 -0
  73. data/spec/singapore_cpf_calculator/year_2022/spr_2_fg/age_70_up_contribution_calculator_spec.rb +63 -0
  74. data/spec/singapore_cpf_calculator/year_2022/spr_2_fg_spec.rb +176 -0
  75. data/spec/singapore_cpf_calculator/year_2022/spr_2_gg/age_55_below_contribution_calculator_spec.rb +63 -0
  76. data/spec/singapore_cpf_calculator/year_2022/spr_2_gg/age_55_to_60_contribution_calculator_spec.rb +63 -0
  77. data/spec/singapore_cpf_calculator/year_2022/spr_2_gg/age_60_to_65_contribution_calculator_spec.rb +63 -0
  78. data/spec/singapore_cpf_calculator/year_2022/spr_2_gg/age_65_up_contribution_calculator_spec.rb +63 -0
  79. data/spec/singapore_cpf_calculator/year_2022/spr_2_gg_spec.rb +158 -0
  80. data/spec/singapore_cpf_calculator/year_2022_spec.rb +192 -0
  81. data/spec/singapore_cpf_calculator_spec.rb +57 -20
  82. data/spec/spec_helper.rb +6 -1
  83. metadata +97 -5
  84. 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.3.4
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: 2020-06-03 00:00:00.000000000 Z
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
- - rmaravilla@payrollhero.com
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.0.8
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
data/.travis.yml DELETED
@@ -1,15 +0,0 @@
1
- language: ruby
2
- dist: trusty
3
- group: stable
4
- rvm:
5
- - 2.1.8
6
- - 2.2.4
7
- - 2.3.8
8
- - 2.4.9
9
- - 2.5.8
10
- - 2.6.6
11
- - 2.7.1
12
-
13
- script:
14
- - bundle exec rspec
15
-