Sha256: a77039582777147c661c794a8e68c5365b97a66a25799782171cd92bf7224a85

Contents?: true

Size: 866 Bytes

Versions: 5

Compression:

Stored size: 866 Bytes

Contents

require_relative "spr_1_gg/age_55_below_contribution_calculator"
require_relative "spr_1_gg/age_55_to_60_contribution_calculator"
require_relative "spr_1_gg/age_60_to_65_contribution_calculator"
require_relative "spr_1_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 SPR1GG

      extend ResidencyModuleCommon
      extend SPR1GGCommon

      class << self

        private

        def calculators
          [
            Age55BelowContributionCalculator,
            Age55To60ContributionCalculator,
            Age60To65ContributionCalculator,
            Age65UpContributionCalculator,
          ]
        end

      end

    end

  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
singapore_cpf_calculator-1.5.1 lib/singapore_cpf_calculator/year_2016/spr_1_gg.rb
singapore_cpf_calculator-1.5.0 lib/singapore_cpf_calculator/year_2016/spr_1_gg.rb
singapore_cpf_calculator-1.4.0 lib/singapore_cpf_calculator/year_2016/spr_1_gg.rb
singapore_cpf_calculator-1.3.4 lib/singapore_cpf_calculator/year_2016/spr_1_gg.rb
singapore_cpf_calculator-1.2.0 lib/singapore_cpf_calculator/year_2016/spr_1_gg.rb