Skip to content

Instantly share code, notes, and snippets.

@icodejs
Created April 23, 2012 19:40
Show Gist options
  • Save icodejs/2473320 to your computer and use it in GitHub Desktop.
Save icodejs/2473320 to your computer and use it in GitHub Desktop.
# Determine US generation name based on birth year
# Case expression tests ranges with ===
generation = case birthyear
when 1946..1963: "Baby Boomer"
when 1964..1976: "Generation X"
when 1978..2000: "Generation Y"
else nil
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment