Sha256: b8f9d732ffed7471be1b727f20fbde30580ce88acce8d6dee25eb012f3b9e5ee
Contents?: true
Size: 866 Bytes
Versions: 5
Compression:
Stored size: 866 Bytes
Contents
require_relative "spr_2_gg/age_55_below_contribution_calculator" require_relative "spr_2_gg/age_55_to_60_contribution_calculator" require_relative "spr_2_gg/age_60_to_65_contribution_calculator" require_relative "spr_2_gg/age_65_up_contribution_calculator" module SingaporeCPFCalculator module Year2016 # For Singapore Permanent Resident (SPR) on their first year with graduated (G, partial) # employer contribution and graduated (G, partial) employee contribution module SPR2GG extend ResidencyModuleCommon extend SPR2GGCommon class << self private def calculators [ Age55BelowContributionCalculator, Age55To60ContributionCalculator, Age60To65ContributionCalculator, Age65UpContributionCalculator, ] end end end end end
Version data entries
5 entries across 5 versions & 1 rubygems