Skip to content

Instantly share code, notes, and snippets.

@camillebaldock
Last active August 29, 2015 14:13
Show Gist options
  • Save camillebaldock/4731a7a8dde6d17f7a1d to your computer and use it in GitHub Desktop.
Save camillebaldock/4731a7a8dde6d17f7a1d to your computer and use it in GitHub Desktop.
⌛ It will never be 2014 again 💔 (or 2013 for that matter)

##Workplace pension calculator

def threshold_annual_rate
  if Date.today < Date.civil(2013, 4, 8)
    8105.0
  elsif Date.today >= Date.civil(2013, 4, 8)
    9440.0
  end
end

def lel_annual_rate
  if Date.today < Date.civil(2013, 4, 8)
    5564.0
  elsif Date.today >= Date.civil(2013, 4, 8)
    5668.0
  end
end

Energy grants calculator

calculate :warm_home_discount_amount do
  if Date.today < Date.civil(2014, 4, 6)
    135
  else
    ''
  end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment