Sha256: ca90add79fa2c7d17a1f7927e5d58124501608b79dbe11676fa8e82b3ae90ae2
Contents?: true
Size: 963 Bytes
Versions: 6
Compression:
Stored size: 963 Bytes
Contents
require_relative "spr_2_fg/age_50_below_contribution_calculator" require_relative "spr_2_fg/age_50_to_55_contribution_calculator" require_relative "spr_2_fg/age_55_to_60_contribution_calculator" require_relative "spr_2_fg/age_60_to_65_contribution_calculator" require_relative "spr_2_fg/age_65_up_contribution_calculator" module SingaporeCPFCalculator module Year2014 # For Singapore Permanent Resident (SPR) on their second year with graduated (G, partial) # employee contribution and full (F) employer contribution module SPR2FG extend ResidencyModuleCommon extend SPR2FGCommon class << self private def calculators [ Age50BelowContributionCalculator, Age50To55ContributionCalculator, Age55To60ContributionCalculator, Age60To65ContributionCalculator, Age65UpContributionCalculator, ] end end end end end
Version data entries
6 entries across 6 versions & 1 rubygems