singapore_cpf_calculator 1.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +22 -0
- data/.rspec +2 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +97 -0
- data/Rakefile +2 -0
- data/circle.yml +3 -0
- data/lib/singapore_cpf_calculator.rb +125 -0
- data/lib/singapore_cpf_calculator/age_group.rb +71 -0
- data/lib/singapore_cpf_calculator/base_calculator.rb +114 -0
- data/lib/singapore_cpf_calculator/before_spr.rb +36 -0
- data/lib/singapore_cpf_calculator/citizen_or_spr_3_common.rb +27 -0
- data/lib/singapore_cpf_calculator/cpf_contribution.rb +28 -0
- data/lib/singapore_cpf_calculator/null_contribution_calculator.rb +17 -0
- data/lib/singapore_cpf_calculator/requirements.rb +10 -0
- data/lib/singapore_cpf_calculator/requirements/group_50_years_and_below.rb +13 -0
- data/lib/singapore_cpf_calculator/requirements/group_above_50_to_55_years.rb +13 -0
- data/lib/singapore_cpf_calculator/requirements/group_above_55_to_60_years.rb +13 -0
- data/lib/singapore_cpf_calculator/requirements/group_above_60_to_65_years.rb +13 -0
- data/lib/singapore_cpf_calculator/requirements/group_above_65_years.rb +13 -0
- data/lib/singapore_cpf_calculator/residency_module_common.rb +12 -0
- data/lib/singapore_cpf_calculator/spr_1_fg_common.rb +26 -0
- data/lib/singapore_cpf_calculator/spr_1_gg_common.rb +26 -0
- data/lib/singapore_cpf_calculator/spr_2_fg_common.rb +26 -0
- data/lib/singapore_cpf_calculator/spr_2_gg_common.rb +26 -0
- data/lib/singapore_cpf_calculator/spr_status.rb +52 -0
- data/lib/singapore_cpf_calculator/version.rb +3 -0
- data/lib/singapore_cpf_calculator/year_2014.rb +37 -0
- data/lib/singapore_cpf_calculator/year_2014/base.rb +17 -0
- data/lib/singapore_cpf_calculator/year_2014/citizen_or_spr_3.rb +35 -0
- data/lib/singapore_cpf_calculator/year_2014/citizen_or_spr_3/age_50_below_contribution_calculator.rb +32 -0
- data/lib/singapore_cpf_calculator/year_2014/citizen_or_spr_3/age_50_to_55_contribution_calculator.rb +33 -0
- data/lib/singapore_cpf_calculator/year_2014/citizen_or_spr_3/age_55_to_60_contribution_calculator.rb +32 -0
- data/lib/singapore_cpf_calculator/year_2014/citizen_or_spr_3/age_60_to_65_contribution_calculator.rb +32 -0
- data/lib/singapore_cpf_calculator/year_2014/citizen_or_spr_3/age_65_up_contribution_calculator.rb +32 -0
- data/lib/singapore_cpf_calculator/year_2014/spr_1_fg.rb +36 -0
- data/lib/singapore_cpf_calculator/year_2014/spr_1_fg/age_50_below_contribution_calculator.rb +33 -0
- data/lib/singapore_cpf_calculator/year_2014/spr_1_fg/age_50_to_55_contribution_calculator.rb +32 -0
- data/lib/singapore_cpf_calculator/year_2014/spr_1_fg/age_55_to_60_contribution_calculator.rb +32 -0
- data/lib/singapore_cpf_calculator/year_2014/spr_1_fg/age_60_to_65_contribution_calculator.rb +32 -0
- data/lib/singapore_cpf_calculator/year_2014/spr_1_fg/age_65_up_contribution_calculator.rb +32 -0
- data/lib/singapore_cpf_calculator/year_2014/spr_1_gg.rb +36 -0
- data/lib/singapore_cpf_calculator/year_2014/spr_1_gg/age_50_below_contribution_calculator.rb +32 -0
- data/lib/singapore_cpf_calculator/year_2014/spr_1_gg/age_50_to_55_contribution_calculator.rb +14 -0
- data/lib/singapore_cpf_calculator/year_2014/spr_1_gg/age_55_to_60_contribution_calculator.rb +14 -0
- data/lib/singapore_cpf_calculator/year_2014/spr_1_gg/age_60_to_65_contribution_calculator.rb +32 -0
- data/lib/singapore_cpf_calculator/year_2014/spr_1_gg/age_65_up_contribution_calculator.rb +32 -0
- data/lib/singapore_cpf_calculator/year_2014/spr_2_fg.rb +36 -0
- data/lib/singapore_cpf_calculator/year_2014/spr_2_fg/age_50_below_contribution_calculator.rb +32 -0
- data/lib/singapore_cpf_calculator/year_2014/spr_2_fg/age_50_to_55_contribution_calculator.rb +32 -0
- data/lib/singapore_cpf_calculator/year_2014/spr_2_fg/age_55_to_60_contribution_calculator.rb +32 -0
- data/lib/singapore_cpf_calculator/year_2014/spr_2_fg/age_60_to_65_contribution_calculator.rb +32 -0
- data/lib/singapore_cpf_calculator/year_2014/spr_2_fg/age_65_up_contribution_calculator.rb +32 -0
- data/lib/singapore_cpf_calculator/year_2014/spr_2_gg.rb +36 -0
- data/lib/singapore_cpf_calculator/year_2014/spr_2_gg/age_50_below_contribution_calculator.rb +32 -0
- data/lib/singapore_cpf_calculator/year_2014/spr_2_gg/age_50_to_55_contribution_calculator.rb +14 -0
- data/lib/singapore_cpf_calculator/year_2014/spr_2_gg/age_55_to_60_contribution_calculator.rb +32 -0
- data/lib/singapore_cpf_calculator/year_2014/spr_2_gg/age_60_to_65_contribution_calculator.rb +32 -0
- data/lib/singapore_cpf_calculator/year_2014/spr_2_gg/age_65_up_contribution_calculator.rb +32 -0
- data/lib/singapore_cpf_calculator/year_2015.rb +38 -0
- data/lib/singapore_cpf_calculator/year_2015/base.rb +17 -0
- data/lib/singapore_cpf_calculator/year_2015/citizen_or_spr_3.rb +35 -0
- data/lib/singapore_cpf_calculator/year_2015/citizen_or_spr_3/age_50_below_contribution_calculator.rb +32 -0
- data/lib/singapore_cpf_calculator/year_2015/citizen_or_spr_3/age_50_to_55_contribution_calculator.rb +32 -0
- data/lib/singapore_cpf_calculator/year_2015/citizen_or_spr_3/age_55_to_60_contribution_calculator.rb +32 -0
- data/lib/singapore_cpf_calculator/year_2015/citizen_or_spr_3/age_60_to_65_contribution_calculator.rb +32 -0
- data/lib/singapore_cpf_calculator/year_2015/citizen_or_spr_3/age_65_up_contribution_calculator.rb +32 -0
- data/lib/singapore_cpf_calculator/year_2015/spr_1_fg.rb +37 -0
- data/lib/singapore_cpf_calculator/year_2015/spr_1_fg/age_50_below_contribution_calculator.rb +32 -0
- data/lib/singapore_cpf_calculator/year_2015/spr_1_fg/age_50_to_55_contribution_calculator.rb +32 -0
- data/lib/singapore_cpf_calculator/year_2015/spr_1_fg/age_55_to_60_contribution_calculator.rb +32 -0
- data/lib/singapore_cpf_calculator/year_2015/spr_1_fg/age_60_to_65_contribution_calculator.rb +32 -0
- data/lib/singapore_cpf_calculator/year_2015/spr_1_fg/age_65_up_contribution_calculator.rb +32 -0
- data/lib/singapore_cpf_calculator/year_2015/spr_1_gg.rb +36 -0
- data/lib/singapore_cpf_calculator/year_2015/spr_1_gg/age_50_below_contribution_calculator.rb +32 -0
- data/lib/singapore_cpf_calculator/year_2015/spr_1_gg/age_50_to_55_contribution_calculator.rb +14 -0
- data/lib/singapore_cpf_calculator/year_2015/spr_1_gg/age_55_to_60_contribution_calculator.rb +14 -0
- data/lib/singapore_cpf_calculator/year_2015/spr_1_gg/age_60_to_65_contribution_calculator.rb +32 -0
- data/lib/singapore_cpf_calculator/year_2015/spr_1_gg/age_65_up_contribution_calculator.rb +14 -0
- data/lib/singapore_cpf_calculator/year_2015/spr_2_fg.rb +36 -0
- data/lib/singapore_cpf_calculator/year_2015/spr_2_fg/age_50_below_contribution_calculator.rb +32 -0
- data/lib/singapore_cpf_calculator/year_2015/spr_2_fg/age_50_to_55_contribution_calculator.rb +32 -0
- data/lib/singapore_cpf_calculator/year_2015/spr_2_fg/age_55_to_60_contribution_calculator.rb +32 -0
- data/lib/singapore_cpf_calculator/year_2015/spr_2_fg/age_60_to_65_contribution_calculator.rb +32 -0
- data/lib/singapore_cpf_calculator/year_2015/spr_2_fg/age_65_up_contribution_calculator.rb +32 -0
- data/lib/singapore_cpf_calculator/year_2015/spr_2_gg.rb +36 -0
- data/lib/singapore_cpf_calculator/year_2015/spr_2_gg/age_50_below_contribution_calculator.rb +32 -0
- data/lib/singapore_cpf_calculator/year_2015/spr_2_gg/age_50_to_55_contribution_calculator.rb +14 -0
- data/lib/singapore_cpf_calculator/year_2015/spr_2_gg/age_55_to_60_contribution_calculator.rb +32 -0
- data/lib/singapore_cpf_calculator/year_2015/spr_2_gg/age_60_to_65_contribution_calculator.rb +32 -0
- data/lib/singapore_cpf_calculator/year_2015/spr_2_gg/age_65_up_contribution_calculator.rb +32 -0
- data/lib/singapore_cpf_calculator/year_common.rb +29 -0
- data/singapore_cpf_calculator.gemspec +27 -0
- data/spec/acceptance/company_a.csv +1365 -0
- data/spec/acceptance/company_a_spec.rb +36 -0
- data/spec/singapore_cpf_calculator/age_group_spec.rb +65 -0
- data/spec/singapore_cpf_calculator/spr_status_spec.rb +48 -0
- data/spec/singapore_cpf_calculator/year_2014/citizen_or_spr_3/age_50_below_contribution_calculator_spec.rb +68 -0
- data/spec/singapore_cpf_calculator/year_2014/citizen_or_spr_3/age_50_to_55_contribution_calculator_spec.rb +68 -0
- data/spec/singapore_cpf_calculator/year_2014/citizen_or_spr_3/age_55_to_60_contribution_calculator_spec.rb +68 -0
- data/spec/singapore_cpf_calculator/year_2014/citizen_or_spr_3/age_60_to_65_contribution_calculator_spec.rb +68 -0
- data/spec/singapore_cpf_calculator/year_2014/citizen_or_spr_3/age_65_up_contribution_calculator_spec.rb +68 -0
- data/spec/singapore_cpf_calculator/year_2014/citizen_or_spr_3_spec.rb +176 -0
- data/spec/singapore_cpf_calculator/year_2014/spr_1_fg/age_50_below_contribution_calculator_spec.rb +73 -0
- data/spec/singapore_cpf_calculator/year_2014/spr_1_fg/age_50_to_55_contribution_calculator_spec.rb +73 -0
- data/spec/singapore_cpf_calculator/year_2014/spr_1_fg/age_55_to_60_contribution_calculator_spec.rb +73 -0
- data/spec/singapore_cpf_calculator/year_2014/spr_1_fg/age_60_to_65_contribution_calculator_spec.rb +73 -0
- data/spec/singapore_cpf_calculator/year_2014/spr_1_fg/age_65_up_contribution_calculator_spec.rb +73 -0
- data/spec/singapore_cpf_calculator/year_2014/spr_1_fg_spec.rb +176 -0
- data/spec/singapore_cpf_calculator/year_2014/spr_1_gg/age_50_below_contribution_calculator_spec.rb +73 -0
- data/spec/singapore_cpf_calculator/year_2014/spr_1_gg/age_50_to_55_contribution_calculator_spec.rb +73 -0
- data/spec/singapore_cpf_calculator/year_2014/spr_1_gg/age_55_to_60_contribution_calculator_spec.rb +73 -0
- data/spec/singapore_cpf_calculator/year_2014/spr_1_gg/age_60_to_65_contribution_calculator_spec.rb +73 -0
- data/spec/singapore_cpf_calculator/year_2014/spr_1_gg/age_65_up_contribution_calculator_spec.rb +73 -0
- data/spec/singapore_cpf_calculator/year_2014/spr_1_gg_spec.rb +176 -0
- data/spec/singapore_cpf_calculator/year_2014/spr_2_fg/age_50_below_contribution_calculator_spec.rb +73 -0
- data/spec/singapore_cpf_calculator/year_2014/spr_2_fg/age_50_to_55_contribution_calculator_spec.rb +73 -0
- data/spec/singapore_cpf_calculator/year_2014/spr_2_fg/age_55_to_60_contribution_calculator_spec.rb +73 -0
- data/spec/singapore_cpf_calculator/year_2014/spr_2_fg/age_60_to_65_contribution_calculator_spec.rb +73 -0
- data/spec/singapore_cpf_calculator/year_2014/spr_2_fg/age_65_up_contribution_calculator_spec.rb +73 -0
- data/spec/singapore_cpf_calculator/year_2014/spr_2_fg_spec.rb +176 -0
- data/spec/singapore_cpf_calculator/year_2014/spr_2_gg/age_50_below_contribution_calculator_spec.rb +73 -0
- data/spec/singapore_cpf_calculator/year_2014/spr_2_gg/age_50_to_55_contribution_calculator_spec.rb +73 -0
- data/spec/singapore_cpf_calculator/year_2014/spr_2_gg/age_55_to_60_contribution_calculator_spec.rb +73 -0
- data/spec/singapore_cpf_calculator/year_2014/spr_2_gg/age_60_to_65_contribution_calculator_spec.rb +73 -0
- data/spec/singapore_cpf_calculator/year_2014/spr_2_gg/age_65_up_contribution_calculator_spec.rb +73 -0
- data/spec/singapore_cpf_calculator/year_2014/spr_2_gg_spec.rb +176 -0
- data/spec/singapore_cpf_calculator/year_2014_spec.rb +183 -0
- data/spec/singapore_cpf_calculator/year_2015/citizen_or_spr_3/age_50_below_contribution_calculator_spec.rb +63 -0
- data/spec/singapore_cpf_calculator/year_2015/citizen_or_spr_3/age_50_to_55_contribution_calculator_spec.rb +63 -0
- data/spec/singapore_cpf_calculator/year_2015/citizen_or_spr_3/age_55_to_60_contribution_calculator_spec.rb +63 -0
- data/spec/singapore_cpf_calculator/year_2015/citizen_or_spr_3/age_60_to_65_contribution_calculator_spec.rb +63 -0
- data/spec/singapore_cpf_calculator/year_2015/citizen_or_spr_3/age_65_up_contribution_calculator_spec.rb +63 -0
- data/spec/singapore_cpf_calculator/year_2015/citizen_or_spr_3_spec.rb +176 -0
- data/spec/singapore_cpf_calculator/year_2015/spr_1_fg/age_50_below_contribution_calculator_spec.rb +63 -0
- data/spec/singapore_cpf_calculator/year_2015/spr_1_fg/age_50_to_55_contribution_calculator_spec.rb +63 -0
- data/spec/singapore_cpf_calculator/year_2015/spr_1_fg/age_55_to_60_contribution_calculator_spec.rb +63 -0
- data/spec/singapore_cpf_calculator/year_2015/spr_1_fg/age_60_to_65_contribution_calculator_spec.rb +63 -0
- data/spec/singapore_cpf_calculator/year_2015/spr_1_fg/age_65_up_contribution_calculator_spec.rb +63 -0
- data/spec/singapore_cpf_calculator/year_2015/spr_1_fg_spec.rb +176 -0
- data/spec/singapore_cpf_calculator/year_2015/spr_1_gg/age_50_below_contribution_calculator_spec.rb +63 -0
- data/spec/singapore_cpf_calculator/year_2015/spr_1_gg/age_50_to_55_contribution_calculator_spec.rb +63 -0
- data/spec/singapore_cpf_calculator/year_2015/spr_1_gg/age_55_to_60_contribution_calculator_spec.rb +63 -0
- data/spec/singapore_cpf_calculator/year_2015/spr_1_gg/age_60_to_65_contribution_calculator_spec.rb +63 -0
- data/spec/singapore_cpf_calculator/year_2015/spr_1_gg/age_65_up_contribution_calculator_spec.rb +63 -0
- data/spec/singapore_cpf_calculator/year_2015/spr_1_gg_spec.rb +176 -0
- data/spec/singapore_cpf_calculator/year_2015/spr_2_fg/age_50_below_contribution_calculator_spec.rb +63 -0
- data/spec/singapore_cpf_calculator/year_2015/spr_2_fg/age_50_to_55_contribution_calculator_spec.rb +63 -0
- data/spec/singapore_cpf_calculator/year_2015/spr_2_fg/age_55_to_60_contribution_calculator_spec.rb +63 -0
- data/spec/singapore_cpf_calculator/year_2015/spr_2_fg/age_60_to_65_contribution_calculator_spec.rb +63 -0
- data/spec/singapore_cpf_calculator/year_2015/spr_2_fg/age_65_up_contribution_calculator_spec.rb +63 -0
- data/spec/singapore_cpf_calculator/year_2015/spr_2_fg_spec.rb +176 -0
- data/spec/singapore_cpf_calculator/year_2015/spr_2_gg/age_50_below_contribution_calculator_spec.rb +63 -0
- data/spec/singapore_cpf_calculator/year_2015/spr_2_gg/age_50_to_55_contribution_calculator_spec.rb +63 -0
- data/spec/singapore_cpf_calculator/year_2015/spr_2_gg/age_55_to_60_contribution_calculator_spec.rb +63 -0
- data/spec/singapore_cpf_calculator/year_2015/spr_2_gg/age_60_to_65_contribution_calculator_spec.rb +63 -0
- data/spec/singapore_cpf_calculator/year_2015/spr_2_gg/age_65_up_contribution_calculator_spec.rb +63 -0
- data/spec/singapore_cpf_calculator/year_2015/spr_2_gg_spec.rb +176 -0
- data/spec/singapore_cpf_calculator/year_2015_spec.rb +187 -0
- data/spec/singapore_cpf_calculator_spec.rb +48 -0
- data/spec/spec_helper.rb +115 -0
- metadata +344 -0
metadata
ADDED
@@ -0,0 +1,344 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: singapore_cpf_calculator
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.1.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Ronald Maravilla
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-12-06 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.6'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.6'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rspec
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: codeclimate-test-reporter
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: activesupport
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :runtime
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
description: A Singapore's Central Provident Fund (CPF) contributions calculator.
|
84
|
+
email:
|
85
|
+
- rmaravilla@payrollhero.com
|
86
|
+
executables: []
|
87
|
+
extensions: []
|
88
|
+
extra_rdoc_files: []
|
89
|
+
files:
|
90
|
+
- ".gitignore"
|
91
|
+
- ".rspec"
|
92
|
+
- Gemfile
|
93
|
+
- LICENSE.txt
|
94
|
+
- README.md
|
95
|
+
- Rakefile
|
96
|
+
- circle.yml
|
97
|
+
- lib/singapore_cpf_calculator.rb
|
98
|
+
- lib/singapore_cpf_calculator/age_group.rb
|
99
|
+
- lib/singapore_cpf_calculator/base_calculator.rb
|
100
|
+
- lib/singapore_cpf_calculator/before_spr.rb
|
101
|
+
- lib/singapore_cpf_calculator/citizen_or_spr_3_common.rb
|
102
|
+
- lib/singapore_cpf_calculator/cpf_contribution.rb
|
103
|
+
- lib/singapore_cpf_calculator/null_contribution_calculator.rb
|
104
|
+
- lib/singapore_cpf_calculator/requirements.rb
|
105
|
+
- lib/singapore_cpf_calculator/requirements/group_50_years_and_below.rb
|
106
|
+
- lib/singapore_cpf_calculator/requirements/group_above_50_to_55_years.rb
|
107
|
+
- lib/singapore_cpf_calculator/requirements/group_above_55_to_60_years.rb
|
108
|
+
- lib/singapore_cpf_calculator/requirements/group_above_60_to_65_years.rb
|
109
|
+
- lib/singapore_cpf_calculator/requirements/group_above_65_years.rb
|
110
|
+
- lib/singapore_cpf_calculator/residency_module_common.rb
|
111
|
+
- lib/singapore_cpf_calculator/spr_1_fg_common.rb
|
112
|
+
- lib/singapore_cpf_calculator/spr_1_gg_common.rb
|
113
|
+
- lib/singapore_cpf_calculator/spr_2_fg_common.rb
|
114
|
+
- lib/singapore_cpf_calculator/spr_2_gg_common.rb
|
115
|
+
- lib/singapore_cpf_calculator/spr_status.rb
|
116
|
+
- lib/singapore_cpf_calculator/version.rb
|
117
|
+
- lib/singapore_cpf_calculator/year_2014.rb
|
118
|
+
- lib/singapore_cpf_calculator/year_2014/base.rb
|
119
|
+
- lib/singapore_cpf_calculator/year_2014/citizen_or_spr_3.rb
|
120
|
+
- lib/singapore_cpf_calculator/year_2014/citizen_or_spr_3/age_50_below_contribution_calculator.rb
|
121
|
+
- lib/singapore_cpf_calculator/year_2014/citizen_or_spr_3/age_50_to_55_contribution_calculator.rb
|
122
|
+
- lib/singapore_cpf_calculator/year_2014/citizen_or_spr_3/age_55_to_60_contribution_calculator.rb
|
123
|
+
- lib/singapore_cpf_calculator/year_2014/citizen_or_spr_3/age_60_to_65_contribution_calculator.rb
|
124
|
+
- lib/singapore_cpf_calculator/year_2014/citizen_or_spr_3/age_65_up_contribution_calculator.rb
|
125
|
+
- lib/singapore_cpf_calculator/year_2014/spr_1_fg.rb
|
126
|
+
- lib/singapore_cpf_calculator/year_2014/spr_1_fg/age_50_below_contribution_calculator.rb
|
127
|
+
- lib/singapore_cpf_calculator/year_2014/spr_1_fg/age_50_to_55_contribution_calculator.rb
|
128
|
+
- lib/singapore_cpf_calculator/year_2014/spr_1_fg/age_55_to_60_contribution_calculator.rb
|
129
|
+
- lib/singapore_cpf_calculator/year_2014/spr_1_fg/age_60_to_65_contribution_calculator.rb
|
130
|
+
- lib/singapore_cpf_calculator/year_2014/spr_1_fg/age_65_up_contribution_calculator.rb
|
131
|
+
- lib/singapore_cpf_calculator/year_2014/spr_1_gg.rb
|
132
|
+
- lib/singapore_cpf_calculator/year_2014/spr_1_gg/age_50_below_contribution_calculator.rb
|
133
|
+
- lib/singapore_cpf_calculator/year_2014/spr_1_gg/age_50_to_55_contribution_calculator.rb
|
134
|
+
- lib/singapore_cpf_calculator/year_2014/spr_1_gg/age_55_to_60_contribution_calculator.rb
|
135
|
+
- lib/singapore_cpf_calculator/year_2014/spr_1_gg/age_60_to_65_contribution_calculator.rb
|
136
|
+
- lib/singapore_cpf_calculator/year_2014/spr_1_gg/age_65_up_contribution_calculator.rb
|
137
|
+
- lib/singapore_cpf_calculator/year_2014/spr_2_fg.rb
|
138
|
+
- lib/singapore_cpf_calculator/year_2014/spr_2_fg/age_50_below_contribution_calculator.rb
|
139
|
+
- lib/singapore_cpf_calculator/year_2014/spr_2_fg/age_50_to_55_contribution_calculator.rb
|
140
|
+
- lib/singapore_cpf_calculator/year_2014/spr_2_fg/age_55_to_60_contribution_calculator.rb
|
141
|
+
- lib/singapore_cpf_calculator/year_2014/spr_2_fg/age_60_to_65_contribution_calculator.rb
|
142
|
+
- lib/singapore_cpf_calculator/year_2014/spr_2_fg/age_65_up_contribution_calculator.rb
|
143
|
+
- lib/singapore_cpf_calculator/year_2014/spr_2_gg.rb
|
144
|
+
- lib/singapore_cpf_calculator/year_2014/spr_2_gg/age_50_below_contribution_calculator.rb
|
145
|
+
- lib/singapore_cpf_calculator/year_2014/spr_2_gg/age_50_to_55_contribution_calculator.rb
|
146
|
+
- lib/singapore_cpf_calculator/year_2014/spr_2_gg/age_55_to_60_contribution_calculator.rb
|
147
|
+
- lib/singapore_cpf_calculator/year_2014/spr_2_gg/age_60_to_65_contribution_calculator.rb
|
148
|
+
- lib/singapore_cpf_calculator/year_2014/spr_2_gg/age_65_up_contribution_calculator.rb
|
149
|
+
- lib/singapore_cpf_calculator/year_2015.rb
|
150
|
+
- lib/singapore_cpf_calculator/year_2015/base.rb
|
151
|
+
- lib/singapore_cpf_calculator/year_2015/citizen_or_spr_3.rb
|
152
|
+
- lib/singapore_cpf_calculator/year_2015/citizen_or_spr_3/age_50_below_contribution_calculator.rb
|
153
|
+
- lib/singapore_cpf_calculator/year_2015/citizen_or_spr_3/age_50_to_55_contribution_calculator.rb
|
154
|
+
- lib/singapore_cpf_calculator/year_2015/citizen_or_spr_3/age_55_to_60_contribution_calculator.rb
|
155
|
+
- lib/singapore_cpf_calculator/year_2015/citizen_or_spr_3/age_60_to_65_contribution_calculator.rb
|
156
|
+
- lib/singapore_cpf_calculator/year_2015/citizen_or_spr_3/age_65_up_contribution_calculator.rb
|
157
|
+
- lib/singapore_cpf_calculator/year_2015/spr_1_fg.rb
|
158
|
+
- lib/singapore_cpf_calculator/year_2015/spr_1_fg/age_50_below_contribution_calculator.rb
|
159
|
+
- lib/singapore_cpf_calculator/year_2015/spr_1_fg/age_50_to_55_contribution_calculator.rb
|
160
|
+
- lib/singapore_cpf_calculator/year_2015/spr_1_fg/age_55_to_60_contribution_calculator.rb
|
161
|
+
- lib/singapore_cpf_calculator/year_2015/spr_1_fg/age_60_to_65_contribution_calculator.rb
|
162
|
+
- lib/singapore_cpf_calculator/year_2015/spr_1_fg/age_65_up_contribution_calculator.rb
|
163
|
+
- lib/singapore_cpf_calculator/year_2015/spr_1_gg.rb
|
164
|
+
- lib/singapore_cpf_calculator/year_2015/spr_1_gg/age_50_below_contribution_calculator.rb
|
165
|
+
- lib/singapore_cpf_calculator/year_2015/spr_1_gg/age_50_to_55_contribution_calculator.rb
|
166
|
+
- lib/singapore_cpf_calculator/year_2015/spr_1_gg/age_55_to_60_contribution_calculator.rb
|
167
|
+
- lib/singapore_cpf_calculator/year_2015/spr_1_gg/age_60_to_65_contribution_calculator.rb
|
168
|
+
- lib/singapore_cpf_calculator/year_2015/spr_1_gg/age_65_up_contribution_calculator.rb
|
169
|
+
- lib/singapore_cpf_calculator/year_2015/spr_2_fg.rb
|
170
|
+
- lib/singapore_cpf_calculator/year_2015/spr_2_fg/age_50_below_contribution_calculator.rb
|
171
|
+
- lib/singapore_cpf_calculator/year_2015/spr_2_fg/age_50_to_55_contribution_calculator.rb
|
172
|
+
- lib/singapore_cpf_calculator/year_2015/spr_2_fg/age_55_to_60_contribution_calculator.rb
|
173
|
+
- lib/singapore_cpf_calculator/year_2015/spr_2_fg/age_60_to_65_contribution_calculator.rb
|
174
|
+
- lib/singapore_cpf_calculator/year_2015/spr_2_fg/age_65_up_contribution_calculator.rb
|
175
|
+
- lib/singapore_cpf_calculator/year_2015/spr_2_gg.rb
|
176
|
+
- lib/singapore_cpf_calculator/year_2015/spr_2_gg/age_50_below_contribution_calculator.rb
|
177
|
+
- lib/singapore_cpf_calculator/year_2015/spr_2_gg/age_50_to_55_contribution_calculator.rb
|
178
|
+
- lib/singapore_cpf_calculator/year_2015/spr_2_gg/age_55_to_60_contribution_calculator.rb
|
179
|
+
- lib/singapore_cpf_calculator/year_2015/spr_2_gg/age_60_to_65_contribution_calculator.rb
|
180
|
+
- lib/singapore_cpf_calculator/year_2015/spr_2_gg/age_65_up_contribution_calculator.rb
|
181
|
+
- lib/singapore_cpf_calculator/year_common.rb
|
182
|
+
- singapore_cpf_calculator.gemspec
|
183
|
+
- spec/acceptance/company_a.csv
|
184
|
+
- spec/acceptance/company_a_spec.rb
|
185
|
+
- spec/singapore_cpf_calculator/age_group_spec.rb
|
186
|
+
- spec/singapore_cpf_calculator/spr_status_spec.rb
|
187
|
+
- spec/singapore_cpf_calculator/year_2014/citizen_or_spr_3/age_50_below_contribution_calculator_spec.rb
|
188
|
+
- spec/singapore_cpf_calculator/year_2014/citizen_or_spr_3/age_50_to_55_contribution_calculator_spec.rb
|
189
|
+
- spec/singapore_cpf_calculator/year_2014/citizen_or_spr_3/age_55_to_60_contribution_calculator_spec.rb
|
190
|
+
- spec/singapore_cpf_calculator/year_2014/citizen_or_spr_3/age_60_to_65_contribution_calculator_spec.rb
|
191
|
+
- spec/singapore_cpf_calculator/year_2014/citizen_or_spr_3/age_65_up_contribution_calculator_spec.rb
|
192
|
+
- spec/singapore_cpf_calculator/year_2014/citizen_or_spr_3_spec.rb
|
193
|
+
- spec/singapore_cpf_calculator/year_2014/spr_1_fg/age_50_below_contribution_calculator_spec.rb
|
194
|
+
- spec/singapore_cpf_calculator/year_2014/spr_1_fg/age_50_to_55_contribution_calculator_spec.rb
|
195
|
+
- spec/singapore_cpf_calculator/year_2014/spr_1_fg/age_55_to_60_contribution_calculator_spec.rb
|
196
|
+
- spec/singapore_cpf_calculator/year_2014/spr_1_fg/age_60_to_65_contribution_calculator_spec.rb
|
197
|
+
- spec/singapore_cpf_calculator/year_2014/spr_1_fg/age_65_up_contribution_calculator_spec.rb
|
198
|
+
- spec/singapore_cpf_calculator/year_2014/spr_1_fg_spec.rb
|
199
|
+
- spec/singapore_cpf_calculator/year_2014/spr_1_gg/age_50_below_contribution_calculator_spec.rb
|
200
|
+
- spec/singapore_cpf_calculator/year_2014/spr_1_gg/age_50_to_55_contribution_calculator_spec.rb
|
201
|
+
- spec/singapore_cpf_calculator/year_2014/spr_1_gg/age_55_to_60_contribution_calculator_spec.rb
|
202
|
+
- spec/singapore_cpf_calculator/year_2014/spr_1_gg/age_60_to_65_contribution_calculator_spec.rb
|
203
|
+
- spec/singapore_cpf_calculator/year_2014/spr_1_gg/age_65_up_contribution_calculator_spec.rb
|
204
|
+
- spec/singapore_cpf_calculator/year_2014/spr_1_gg_spec.rb
|
205
|
+
- spec/singapore_cpf_calculator/year_2014/spr_2_fg/age_50_below_contribution_calculator_spec.rb
|
206
|
+
- spec/singapore_cpf_calculator/year_2014/spr_2_fg/age_50_to_55_contribution_calculator_spec.rb
|
207
|
+
- spec/singapore_cpf_calculator/year_2014/spr_2_fg/age_55_to_60_contribution_calculator_spec.rb
|
208
|
+
- spec/singapore_cpf_calculator/year_2014/spr_2_fg/age_60_to_65_contribution_calculator_spec.rb
|
209
|
+
- spec/singapore_cpf_calculator/year_2014/spr_2_fg/age_65_up_contribution_calculator_spec.rb
|
210
|
+
- spec/singapore_cpf_calculator/year_2014/spr_2_fg_spec.rb
|
211
|
+
- spec/singapore_cpf_calculator/year_2014/spr_2_gg/age_50_below_contribution_calculator_spec.rb
|
212
|
+
- spec/singapore_cpf_calculator/year_2014/spr_2_gg/age_50_to_55_contribution_calculator_spec.rb
|
213
|
+
- spec/singapore_cpf_calculator/year_2014/spr_2_gg/age_55_to_60_contribution_calculator_spec.rb
|
214
|
+
- spec/singapore_cpf_calculator/year_2014/spr_2_gg/age_60_to_65_contribution_calculator_spec.rb
|
215
|
+
- spec/singapore_cpf_calculator/year_2014/spr_2_gg/age_65_up_contribution_calculator_spec.rb
|
216
|
+
- spec/singapore_cpf_calculator/year_2014/spr_2_gg_spec.rb
|
217
|
+
- spec/singapore_cpf_calculator/year_2014_spec.rb
|
218
|
+
- spec/singapore_cpf_calculator/year_2015/citizen_or_spr_3/age_50_below_contribution_calculator_spec.rb
|
219
|
+
- spec/singapore_cpf_calculator/year_2015/citizen_or_spr_3/age_50_to_55_contribution_calculator_spec.rb
|
220
|
+
- spec/singapore_cpf_calculator/year_2015/citizen_or_spr_3/age_55_to_60_contribution_calculator_spec.rb
|
221
|
+
- spec/singapore_cpf_calculator/year_2015/citizen_or_spr_3/age_60_to_65_contribution_calculator_spec.rb
|
222
|
+
- spec/singapore_cpf_calculator/year_2015/citizen_or_spr_3/age_65_up_contribution_calculator_spec.rb
|
223
|
+
- spec/singapore_cpf_calculator/year_2015/citizen_or_spr_3_spec.rb
|
224
|
+
- spec/singapore_cpf_calculator/year_2015/spr_1_fg/age_50_below_contribution_calculator_spec.rb
|
225
|
+
- spec/singapore_cpf_calculator/year_2015/spr_1_fg/age_50_to_55_contribution_calculator_spec.rb
|
226
|
+
- spec/singapore_cpf_calculator/year_2015/spr_1_fg/age_55_to_60_contribution_calculator_spec.rb
|
227
|
+
- spec/singapore_cpf_calculator/year_2015/spr_1_fg/age_60_to_65_contribution_calculator_spec.rb
|
228
|
+
- spec/singapore_cpf_calculator/year_2015/spr_1_fg/age_65_up_contribution_calculator_spec.rb
|
229
|
+
- spec/singapore_cpf_calculator/year_2015/spr_1_fg_spec.rb
|
230
|
+
- spec/singapore_cpf_calculator/year_2015/spr_1_gg/age_50_below_contribution_calculator_spec.rb
|
231
|
+
- spec/singapore_cpf_calculator/year_2015/spr_1_gg/age_50_to_55_contribution_calculator_spec.rb
|
232
|
+
- spec/singapore_cpf_calculator/year_2015/spr_1_gg/age_55_to_60_contribution_calculator_spec.rb
|
233
|
+
- spec/singapore_cpf_calculator/year_2015/spr_1_gg/age_60_to_65_contribution_calculator_spec.rb
|
234
|
+
- spec/singapore_cpf_calculator/year_2015/spr_1_gg/age_65_up_contribution_calculator_spec.rb
|
235
|
+
- spec/singapore_cpf_calculator/year_2015/spr_1_gg_spec.rb
|
236
|
+
- spec/singapore_cpf_calculator/year_2015/spr_2_fg/age_50_below_contribution_calculator_spec.rb
|
237
|
+
- spec/singapore_cpf_calculator/year_2015/spr_2_fg/age_50_to_55_contribution_calculator_spec.rb
|
238
|
+
- spec/singapore_cpf_calculator/year_2015/spr_2_fg/age_55_to_60_contribution_calculator_spec.rb
|
239
|
+
- spec/singapore_cpf_calculator/year_2015/spr_2_fg/age_60_to_65_contribution_calculator_spec.rb
|
240
|
+
- spec/singapore_cpf_calculator/year_2015/spr_2_fg/age_65_up_contribution_calculator_spec.rb
|
241
|
+
- spec/singapore_cpf_calculator/year_2015/spr_2_fg_spec.rb
|
242
|
+
- spec/singapore_cpf_calculator/year_2015/spr_2_gg/age_50_below_contribution_calculator_spec.rb
|
243
|
+
- spec/singapore_cpf_calculator/year_2015/spr_2_gg/age_50_to_55_contribution_calculator_spec.rb
|
244
|
+
- spec/singapore_cpf_calculator/year_2015/spr_2_gg/age_55_to_60_contribution_calculator_spec.rb
|
245
|
+
- spec/singapore_cpf_calculator/year_2015/spr_2_gg/age_60_to_65_contribution_calculator_spec.rb
|
246
|
+
- spec/singapore_cpf_calculator/year_2015/spr_2_gg/age_65_up_contribution_calculator_spec.rb
|
247
|
+
- spec/singapore_cpf_calculator/year_2015/spr_2_gg_spec.rb
|
248
|
+
- spec/singapore_cpf_calculator/year_2015_spec.rb
|
249
|
+
- spec/singapore_cpf_calculator_spec.rb
|
250
|
+
- spec/spec_helper.rb
|
251
|
+
homepage: https://github.com/payrollhero/singapore_cpf_calculator
|
252
|
+
licenses:
|
253
|
+
- BSD-3-Clause
|
254
|
+
metadata: {}
|
255
|
+
post_install_message:
|
256
|
+
rdoc_options: []
|
257
|
+
require_paths:
|
258
|
+
- lib
|
259
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
260
|
+
requirements:
|
261
|
+
- - ">="
|
262
|
+
- !ruby/object:Gem::Version
|
263
|
+
version: '0'
|
264
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
265
|
+
requirements:
|
266
|
+
- - ">="
|
267
|
+
- !ruby/object:Gem::Version
|
268
|
+
version: '0'
|
269
|
+
requirements: []
|
270
|
+
rubyforge_project:
|
271
|
+
rubygems_version: 2.2.2
|
272
|
+
signing_key:
|
273
|
+
specification_version: 4
|
274
|
+
summary: A Singapore's Central Provident Fund (CPF) contributions calculator.
|
275
|
+
test_files:
|
276
|
+
- spec/acceptance/company_a.csv
|
277
|
+
- spec/acceptance/company_a_spec.rb
|
278
|
+
- spec/singapore_cpf_calculator/age_group_spec.rb
|
279
|
+
- spec/singapore_cpf_calculator/spr_status_spec.rb
|
280
|
+
- spec/singapore_cpf_calculator/year_2014/citizen_or_spr_3/age_50_below_contribution_calculator_spec.rb
|
281
|
+
- spec/singapore_cpf_calculator/year_2014/citizen_or_spr_3/age_50_to_55_contribution_calculator_spec.rb
|
282
|
+
- spec/singapore_cpf_calculator/year_2014/citizen_or_spr_3/age_55_to_60_contribution_calculator_spec.rb
|
283
|
+
- spec/singapore_cpf_calculator/year_2014/citizen_or_spr_3/age_60_to_65_contribution_calculator_spec.rb
|
284
|
+
- spec/singapore_cpf_calculator/year_2014/citizen_or_spr_3/age_65_up_contribution_calculator_spec.rb
|
285
|
+
- spec/singapore_cpf_calculator/year_2014/citizen_or_spr_3_spec.rb
|
286
|
+
- spec/singapore_cpf_calculator/year_2014/spr_1_fg/age_50_below_contribution_calculator_spec.rb
|
287
|
+
- spec/singapore_cpf_calculator/year_2014/spr_1_fg/age_50_to_55_contribution_calculator_spec.rb
|
288
|
+
- spec/singapore_cpf_calculator/year_2014/spr_1_fg/age_55_to_60_contribution_calculator_spec.rb
|
289
|
+
- spec/singapore_cpf_calculator/year_2014/spr_1_fg/age_60_to_65_contribution_calculator_spec.rb
|
290
|
+
- spec/singapore_cpf_calculator/year_2014/spr_1_fg/age_65_up_contribution_calculator_spec.rb
|
291
|
+
- spec/singapore_cpf_calculator/year_2014/spr_1_fg_spec.rb
|
292
|
+
- spec/singapore_cpf_calculator/year_2014/spr_1_gg/age_50_below_contribution_calculator_spec.rb
|
293
|
+
- spec/singapore_cpf_calculator/year_2014/spr_1_gg/age_50_to_55_contribution_calculator_spec.rb
|
294
|
+
- spec/singapore_cpf_calculator/year_2014/spr_1_gg/age_55_to_60_contribution_calculator_spec.rb
|
295
|
+
- spec/singapore_cpf_calculator/year_2014/spr_1_gg/age_60_to_65_contribution_calculator_spec.rb
|
296
|
+
- spec/singapore_cpf_calculator/year_2014/spr_1_gg/age_65_up_contribution_calculator_spec.rb
|
297
|
+
- spec/singapore_cpf_calculator/year_2014/spr_1_gg_spec.rb
|
298
|
+
- spec/singapore_cpf_calculator/year_2014/spr_2_fg/age_50_below_contribution_calculator_spec.rb
|
299
|
+
- spec/singapore_cpf_calculator/year_2014/spr_2_fg/age_50_to_55_contribution_calculator_spec.rb
|
300
|
+
- spec/singapore_cpf_calculator/year_2014/spr_2_fg/age_55_to_60_contribution_calculator_spec.rb
|
301
|
+
- spec/singapore_cpf_calculator/year_2014/spr_2_fg/age_60_to_65_contribution_calculator_spec.rb
|
302
|
+
- spec/singapore_cpf_calculator/year_2014/spr_2_fg/age_65_up_contribution_calculator_spec.rb
|
303
|
+
- spec/singapore_cpf_calculator/year_2014/spr_2_fg_spec.rb
|
304
|
+
- spec/singapore_cpf_calculator/year_2014/spr_2_gg/age_50_below_contribution_calculator_spec.rb
|
305
|
+
- spec/singapore_cpf_calculator/year_2014/spr_2_gg/age_50_to_55_contribution_calculator_spec.rb
|
306
|
+
- spec/singapore_cpf_calculator/year_2014/spr_2_gg/age_55_to_60_contribution_calculator_spec.rb
|
307
|
+
- spec/singapore_cpf_calculator/year_2014/spr_2_gg/age_60_to_65_contribution_calculator_spec.rb
|
308
|
+
- spec/singapore_cpf_calculator/year_2014/spr_2_gg/age_65_up_contribution_calculator_spec.rb
|
309
|
+
- spec/singapore_cpf_calculator/year_2014/spr_2_gg_spec.rb
|
310
|
+
- spec/singapore_cpf_calculator/year_2014_spec.rb
|
311
|
+
- spec/singapore_cpf_calculator/year_2015/citizen_or_spr_3/age_50_below_contribution_calculator_spec.rb
|
312
|
+
- spec/singapore_cpf_calculator/year_2015/citizen_or_spr_3/age_50_to_55_contribution_calculator_spec.rb
|
313
|
+
- spec/singapore_cpf_calculator/year_2015/citizen_or_spr_3/age_55_to_60_contribution_calculator_spec.rb
|
314
|
+
- spec/singapore_cpf_calculator/year_2015/citizen_or_spr_3/age_60_to_65_contribution_calculator_spec.rb
|
315
|
+
- spec/singapore_cpf_calculator/year_2015/citizen_or_spr_3/age_65_up_contribution_calculator_spec.rb
|
316
|
+
- spec/singapore_cpf_calculator/year_2015/citizen_or_spr_3_spec.rb
|
317
|
+
- spec/singapore_cpf_calculator/year_2015/spr_1_fg/age_50_below_contribution_calculator_spec.rb
|
318
|
+
- spec/singapore_cpf_calculator/year_2015/spr_1_fg/age_50_to_55_contribution_calculator_spec.rb
|
319
|
+
- spec/singapore_cpf_calculator/year_2015/spr_1_fg/age_55_to_60_contribution_calculator_spec.rb
|
320
|
+
- spec/singapore_cpf_calculator/year_2015/spr_1_fg/age_60_to_65_contribution_calculator_spec.rb
|
321
|
+
- spec/singapore_cpf_calculator/year_2015/spr_1_fg/age_65_up_contribution_calculator_spec.rb
|
322
|
+
- spec/singapore_cpf_calculator/year_2015/spr_1_fg_spec.rb
|
323
|
+
- spec/singapore_cpf_calculator/year_2015/spr_1_gg/age_50_below_contribution_calculator_spec.rb
|
324
|
+
- spec/singapore_cpf_calculator/year_2015/spr_1_gg/age_50_to_55_contribution_calculator_spec.rb
|
325
|
+
- spec/singapore_cpf_calculator/year_2015/spr_1_gg/age_55_to_60_contribution_calculator_spec.rb
|
326
|
+
- spec/singapore_cpf_calculator/year_2015/spr_1_gg/age_60_to_65_contribution_calculator_spec.rb
|
327
|
+
- spec/singapore_cpf_calculator/year_2015/spr_1_gg/age_65_up_contribution_calculator_spec.rb
|
328
|
+
- spec/singapore_cpf_calculator/year_2015/spr_1_gg_spec.rb
|
329
|
+
- spec/singapore_cpf_calculator/year_2015/spr_2_fg/age_50_below_contribution_calculator_spec.rb
|
330
|
+
- spec/singapore_cpf_calculator/year_2015/spr_2_fg/age_50_to_55_contribution_calculator_spec.rb
|
331
|
+
- spec/singapore_cpf_calculator/year_2015/spr_2_fg/age_55_to_60_contribution_calculator_spec.rb
|
332
|
+
- spec/singapore_cpf_calculator/year_2015/spr_2_fg/age_60_to_65_contribution_calculator_spec.rb
|
333
|
+
- spec/singapore_cpf_calculator/year_2015/spr_2_fg/age_65_up_contribution_calculator_spec.rb
|
334
|
+
- spec/singapore_cpf_calculator/year_2015/spr_2_fg_spec.rb
|
335
|
+
- spec/singapore_cpf_calculator/year_2015/spr_2_gg/age_50_below_contribution_calculator_spec.rb
|
336
|
+
- spec/singapore_cpf_calculator/year_2015/spr_2_gg/age_50_to_55_contribution_calculator_spec.rb
|
337
|
+
- spec/singapore_cpf_calculator/year_2015/spr_2_gg/age_55_to_60_contribution_calculator_spec.rb
|
338
|
+
- spec/singapore_cpf_calculator/year_2015/spr_2_gg/age_60_to_65_contribution_calculator_spec.rb
|
339
|
+
- spec/singapore_cpf_calculator/year_2015/spr_2_gg/age_65_up_contribution_calculator_spec.rb
|
340
|
+
- spec/singapore_cpf_calculator/year_2015/spr_2_gg_spec.rb
|
341
|
+
- spec/singapore_cpf_calculator/year_2015_spec.rb
|
342
|
+
- spec/singapore_cpf_calculator_spec.rb
|
343
|
+
- spec/spec_helper.rb
|
344
|
+
has_rdoc:
|