Skip to content

Instantly share code, notes, and snippets.

@lesniakania
Last active May 22, 2016 19:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lesniakania/a2ae05319897df8db94d4c7bc61a286a to your computer and use it in GitHub Desktop.
Save lesniakania/a2ae05319897df8db94d4c7bc61a286a to your computer and use it in GitHub Desktop.
class Submission
MINIMAL_AGE = 18
attr_accessor :age
def can_attend?
age > MINIMAL_AGE
end
end
submission = Submission.new
submission.age = 17
submission.can_attend? #=> false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment