Sha256: 789651e37d7d9118fe60cc9bf400fd73d488f17036c82d412163180dccf35998

Contents?: true

Size: 541 Bytes

Versions: 2

Compression:

Stored size: 541 Bytes

Contents

module SingaporeCPFCalculator
  module Year2015
    module CitizenOrSPR3

      # Payment calculator for Singapore's Central Provident Fund for employee's age 55 to 60.
      class Age55To60ContributionCalculator < Year2015::Base

        extend Requirements::GroupAbove55To60Years

        private

        def tc_rate_1
          "0.12"
        end

        def tc_rate_2
          "0.25"
        end

        def ec_rate
          "0.13"
        end

        def adjustment_rate
          "0.39"
        end

      end

    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
singapore_cpf_calculator-1.2.0 lib/singapore_cpf_calculator/year_2015/citizen_or_spr_3/age_55_to_60_contribution_calculator.rb
singapore_cpf_calculator-1.1.1 lib/singapore_cpf_calculator/year_2015/citizen_or_spr_3/age_55_to_60_contribution_calculator.rb