Sha256: b082577bea23a6ec6132980f6ee7ad868775ac432141bd0066b2ff3de92f1829

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 Year2015

    # 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

Version Path
singapore_cpf_calculator-1.5.1 lib/singapore_cpf_calculator/year_2015/spr_2_fg.rb
singapore_cpf_calculator-1.5.0 lib/singapore_cpf_calculator/year_2015/spr_2_fg.rb
singapore_cpf_calculator-1.4.0 lib/singapore_cpf_calculator/year_2015/spr_2_fg.rb
singapore_cpf_calculator-1.3.4 lib/singapore_cpf_calculator/year_2015/spr_2_fg.rb
singapore_cpf_calculator-1.2.0 lib/singapore_cpf_calculator/year_2015/spr_2_fg.rb
singapore_cpf_calculator-1.1.1 lib/singapore_cpf_calculator/year_2015/spr_2_fg.rb