Sha256: acb215bd5644976e687e25c009bed480fef6eda0aafdef545199cb3ee46f1b06

Contents?: true

Size: 853 Bytes

Versions: 5

Compression:

Stored size: 853 Bytes

Contents

require_relative "spr_1_fg/age_55_below_contribution_calculator"
require_relative "spr_1_fg/age_55_to_60_contribution_calculator"
require_relative "spr_1_fg/age_60_to_65_contribution_calculator"
require_relative "spr_1_fg/age_65_up_contribution_calculator"

module SingaporeCPFCalculator
  module Year2016

    # For Singapore Permanent Resident (SPR) on their first year with graduated (G, partial)
    # employee contribution and full (F) employer contribution
    module SPR1FG

      extend ResidencyModuleCommon
      extend SPR1FGCommon


      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_fg.rb
singapore_cpf_calculator-1.5.0 lib/singapore_cpf_calculator/year_2016/spr_1_fg.rb
singapore_cpf_calculator-1.4.0 lib/singapore_cpf_calculator/year_2016/spr_1_fg.rb
singapore_cpf_calculator-1.3.4 lib/singapore_cpf_calculator/year_2016/spr_1_fg.rb
singapore_cpf_calculator-1.2.0 lib/singapore_cpf_calculator/year_2016/spr_1_fg.rb