-
-
Save tommeier/6146493 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Improve / Fix as many things in the code below | |
# Answers should be sent to [email protected] | |
# Good luck | |
class User < ActiveRecord::Base | |
validates_presence_of :name, :email, :date_of_birth, :age_category | |
before_save do | |
age = (Time.now - date_of_birth).year | |
if age < 10 age_category = 'child' | |
elsif age < 18 age_category = 'teenager' | |
elsif age < 24 age_category = 'young' | |
elsif age < 54 age_category = 'adult' | |
else age_category = 'senior' | |
end | |
end | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment