Sha256: d44079d4f431a4eb856c32fccd3219647e97f726193366fd9561f40c9d8db85c

Contents?: true

Size: 866 Bytes

Versions: 3

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 Year2022

    # 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

3 entries across 3 versions & 1 rubygems

Version Path
singapore_cpf_calculator-1.5.1 lib/singapore_cpf_calculator/year_2022/spr_2_gg.rb
singapore_cpf_calculator-1.5.0 lib/singapore_cpf_calculator/year_2022/spr_2_gg.rb
singapore_cpf_calculator-1.4.0 lib/singapore_cpf_calculator/year_2022/spr_2_gg.rb