Skip to content

Instantly share code, notes, and snippets.

@geraudmathe
Created May 31, 2012 14:26
Show Gist options
  • Save geraudmathe/2843725 to your computer and use it in GitHub Desktop.
Save geraudmathe/2843725 to your computer and use it in GitHub Desktop.
class Player
def initialize birthdate
@birthdate = birthdate
end
def is_old_enough?
birthdate < Date.today-18.years
end
end
###############
player = Player.new params[:birthdate]
player.is_old_enough?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment